Merge remote-tracking branch 'origin/master'

This commit is contained in:
Yann Cébron 2019-06-20 12:55:57 +02:00
commit 603fb39e5b
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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