mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
find method duplicates: match super expressions ( IDEA-45118 )
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
public class a {
|
||||
public void login() {
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
|
||||
class b extends a {
|
||||
public void doL<caret>ogin() throws Exception {
|
||||
super.login();
|
||||
}
|
||||
|
||||
public void foo() throws Exception {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
b.super.login();
|
||||
}
|
||||
}.run();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user