mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
consider local variables with or without final modifier equal in duplicates finder
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
class C {
|
||||
{
|
||||
newMethod();
|
||||
}
|
||||
|
||||
void f() {
|
||||
newMethod();
|
||||
}
|
||||
|
||||
private void newMethod() {
|
||||
@A @B int j = 0;
|
||||
System.out.println(j);
|
||||
}
|
||||
}
|
||||
@interface A {}
|
||||
@interface B {}
|
||||
Reference in New Issue
Block a user