mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-30 02:07:50 +08:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
603fb39e5b
@ -41,10 +41,10 @@ Recompile your code to pick up the new signature.
|
||||
`com.intellij.extapi.psi.MetadataPsiElementBase` class removed
|
||||
: Please use different base class for PSI elements.
|
||||
|
||||
`com.intellij.ide.actions.SearchAgainAction` class now extends `EditorAction` and inherits its final method `actionPerformed`
|
||||
`com.intellij.ide.actions.SearchAgainAction` class now extends `com.intellij.openapi.editor.actionSystem.EditorAction` and inherits its final method `actionPerformed`
|
||||
: Please use the `<editorActionHandler>` extension point to register a different handler for the action.
|
||||
|
||||
`com.intellij.ide.actions.SearchBackAction` class now extends `EditorAction` and inherits its final method `actionPerformed`
|
||||
`com.intellij.ide.actions.SearchBackAction` class now extends `com.intellij.openapi.editor.actionSystem.EditorAction` and inherits its final method `actionPerformed`
|
||||
: Please use the `<editorActionHandler>` extension point to register a different handler for the action.
|
||||
|
||||
# 2019.1
|
||||
|
@ -26,6 +26,7 @@ The following problem patterns are supported:
|
||||
<class name>.<method name>(<human-readable parameters>) method parameter type changed from <before> to <after>
|
||||
<class name>.<method name>(<human-readable parameters>) method visibility changed from <before> to <after>
|
||||
<class name>.<method name>(<human-readable parameters>) method marked final
|
||||
<class name> (class|interface) now (extends|implements) <class name> and inherits its final method <method name>(<human-readable parameters>)?
|
||||
|
||||
<class name>(<human-readable parameters>) constructor removed
|
||||
<class name>(<human-readable parameters>) constructor parameter <type> removed
|
||||
|
Loading…
x
Reference in New Issue
Block a user