highlighting of overriding methods: reorder warnings (IDEA-199315)

This commit is contained in:
Anna.Kozlova
2019-01-07 19:09:18 +01:00
parent 3a6c465931
commit 361f188984
2 changed files with 3 additions and 3 deletions
@@ -1,6 +1,6 @@
interface ConflictWithObject {
<error descr="'notify()' cannot override 'notify()' in 'java.lang.Object'; overridden method is final">public void notify()</error>;
<error descr="'notify()' cannot override 'notify()' in 'java.lang.Object'; overridden method is final">public Object notify()</error>;
}
//--override final-------------------------------------------------------------------------