⁠
kyle wood: Update copyright to 2023
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2022 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.update
- import com.intellij.openapi.actionSystem.AnActionEvent
- import com.intellij.openapi.project.DumbAwareAction
- class ConfigurePluginUpdatesAction : DumbAwareAction() {
- override fun actionPerformed(e: AnActionEvent) {
- ConfigurePluginUpdatesDialog().show()
- }
- }
- /*
- * Minecraft Dev for IntelliJ
- *
- * https://minecraftdev.org
- *
- * Copyright (c) 2023 minecraft-dev
- *
- * MIT License
- */
- package com.demonwav.mcdev.update
- import com.intellij.openapi.actionSystem.AnActionEvent
- import com.intellij.openapi.project.DumbAwareAction
- class ConfigurePluginUpdatesAction : DumbAwareAction() {
- override fun actionPerformed(e: AnActionEvent) {
- ConfigurePluginUpdatesDialog().show()
- }
- }