mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[devkit] DevKitBundle.properties: fix typo in inspections.action.update.thread.message
GitOrigin-RevId: 924cc6d64e19bbd645b106d7164011c8fcf33170
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1aba797ce2
commit
4359ea0973
@@ -613,7 +613,7 @@ inspection.incorrect.parent.disposable.display.name=Incorrect parentDisposable p
|
||||
inspection.missing.accessible.context.display.name=Accessible context is missing
|
||||
inspection.message.accessible.context.not.defined.for.jpanel=Accessible context is not defined for JPanel
|
||||
inspections.action.update.thread.display.name=ActionUpdateThread is missing
|
||||
inspections.action.update.thread.message=Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'
|
||||
inspections.action.update.thread.message=Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'
|
||||
gutter.name.test.data.line.marker=Test data
|
||||
progress.title.calculate.target.properties.file=Calculate target properties file
|
||||
inspection.message.field.may.prevent.intention.preview.to.work.properly=Field may prevent intention preview from working properly
|
||||
|
||||
+4
-4
@@ -4,7 +4,7 @@ import com.intellij.openapi.actionSystem.*;
|
||||
import static com.intellij.openapi.actionSystem.ActionUpdateThread.*;
|
||||
|
||||
// plain
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionError</warning> extends AnAction {
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionError</warning> extends AnAction {
|
||||
public void update(AnActionEvent e) { }
|
||||
}
|
||||
|
||||
@@ -15,12 +15,12 @@ class ActionNoError extends AnAction {
|
||||
}
|
||||
|
||||
// inherited
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionChildError</warning> extends ActionError { }
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionChildError</warning> extends ActionError { }
|
||||
class ActionChildNoError extends ActionNoError { }
|
||||
|
||||
// anonymous
|
||||
class Holder {
|
||||
AnAction actionError = new <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionError</warning>() {
|
||||
AnAction actionError = new <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionError</warning>() {
|
||||
};
|
||||
|
||||
AnAction actionNoError = new ActionError() {
|
||||
@@ -35,5 +35,5 @@ interface WithDefaultMethod extends ActionUpdateThreadAware {
|
||||
}
|
||||
}
|
||||
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionErrorAnyway</warning> extends ActionError implements WithDefaultMethod {
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionErrorAnyway</warning> extends ActionError implements WithDefaultMethod {
|
||||
}
|
||||
+3
-3
@@ -4,7 +4,7 @@ import com.intellij.openapi.actionSystem.*;
|
||||
import static com.intellij.openapi.actionSystem.ActionUpdateThread.*;
|
||||
|
||||
// plain
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">AwareError</warning> implements ActionUpdateThreadAware {
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">AwareError</warning> implements ActionUpdateThreadAware {
|
||||
}
|
||||
|
||||
class AwareNoError implements ActionUpdateThreadAware {
|
||||
@@ -12,12 +12,12 @@ class AwareNoError implements ActionUpdateThreadAware {
|
||||
}
|
||||
|
||||
// inherited
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">AwareChildError</warning> extends AwareError {}
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">AwareChildError</warning> extends AwareError {}
|
||||
class AwareChildNoError extends AwareNoError {}
|
||||
|
||||
// anonymous
|
||||
class Holder {
|
||||
ActionUpdateThreadAware awareError = new <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">AwareError</warning>() {
|
||||
ActionUpdateThreadAware awareError = new <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">AwareError</warning>() {
|
||||
};
|
||||
|
||||
ActionUpdateThreadAware awareNoError = new AwareError() {
|
||||
|
||||
+3
-3
@@ -4,7 +4,7 @@ import com.intellij.openapi.actionSystem.*
|
||||
import com.intellij.openapi.actionSystem.ActionUpdateThread.*
|
||||
|
||||
// plain
|
||||
open class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionError</warning> : AnAction() {
|
||||
open class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionError</warning> : AnAction() {
|
||||
override fun update(e: AnActionEvent) { }
|
||||
}
|
||||
|
||||
@@ -14,12 +14,12 @@ open class ActionNoError : AnAction() {
|
||||
}
|
||||
|
||||
// inherited
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">ActionChildError</warning> : ActionError()
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">ActionChildError</warning> : ActionError()
|
||||
class ActionChildNoError : ActionNoError()
|
||||
|
||||
// anonymous
|
||||
class Holder {
|
||||
val actionError: AnAction = <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">object</warning>: ActionError() {
|
||||
val actionError: AnAction = <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">object</warning>: ActionError() {
|
||||
}
|
||||
|
||||
val actionNoError: AnAction = object : ActionError() {
|
||||
|
||||
+3
-3
@@ -4,7 +4,7 @@ import com.intellij.openapi.actionSystem.*
|
||||
import com.intellij.openapi.actionSystem.ActionUpdateThread.*
|
||||
|
||||
// plain
|
||||
open class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">AwareError</warning> : ActionUpdateThreadAware {
|
||||
open class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">AwareError</warning> : ActionUpdateThreadAware {
|
||||
}
|
||||
|
||||
open class AwareNoError : ActionUpdateThreadAware {
|
||||
@@ -12,12 +12,12 @@ open class AwareNoError : ActionUpdateThreadAware {
|
||||
}
|
||||
|
||||
// inherited
|
||||
class <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">AwareChildError</warning> : AwareError()
|
||||
class <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">AwareChildError</warning> : AwareError()
|
||||
class AwareChildNoError : AwareNoError()
|
||||
|
||||
// anonymous
|
||||
class Holder {
|
||||
val awareError = <warning descr="Override 'getActionUpdateThread' and chose 'EDT' or 'BGT'">object</warning>: AwareError() {
|
||||
val awareError = <warning descr="Override 'getActionUpdateThread' and choose 'EDT' or 'BGT'">object</warning>: AwareError() {
|
||||
}
|
||||
|
||||
val awareNoError = object : AwareError() {
|
||||
|
||||
Reference in New Issue
Block a user