consider local variables with or without final modifier equal in duplicates finder

This commit is contained in:
Bas Leijdekkers
2016-06-23 14:51:18 +02:00
parent a02562cadb
commit 78b84acd0f
8 changed files with 144 additions and 0 deletions
@@ -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 {}