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