mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
fix annotation matching in duplicates finder
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class C {
|
||||
{
|
||||
@A int i = 0;
|
||||
System.out.println(i);
|
||||
}
|
||||
|
||||
void f() {
|
||||
newMethod();
|
||||
}
|
||||
|
||||
private void newMethod() {
|
||||
@B int j = 0;
|
||||
System.out.println(j);
|
||||
}
|
||||
}
|
||||
@interface A {}
|
||||
@interface B {}
|
||||
Reference in New Issue
Block a user