mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
unimplement: do not delete methods which override super methods (IDEA-58918)
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Unimplement Interface" "true"
|
||||
class A {
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}
|
||||
|
||||
interface II {}
|
||||
@@ -0,0 +1,8 @@
|
||||
// "Unimplement Interface" "true"
|
||||
class A implements I<caret>I {
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}
|
||||
|
||||
interface II {}
|
||||
Reference in New Issue
Block a user