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,13 @@
|
||||
class C {
|
||||
{
|
||||
@B @A int i = 0;
|
||||
System.out.println(i);
|
||||
}
|
||||
|
||||
void f() {
|
||||
<selection>@A @B int j = 0;
|
||||
System.out.println(j);</selection>
|
||||
}
|
||||
}
|
||||
@interface A {}
|
||||
@interface B {}
|
||||
Reference in New Issue
Block a user