mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
consider local variables with or without final modifier equal in duplicates finder
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
class Test10 {
|
||||
void test() {
|
||||
<selection>new Super() {
|
||||
int get() {
|
||||
return 0;
|
||||
}
|
||||
};</selection>
|
||||
|
||||
new Super() {
|
||||
@Override
|
||||
int get() {
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
class Super {
|
||||
int get() {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user