replace constant duplicates (IDEA-43784)

This commit is contained in:
anna
2012-01-16 20:12:12 +01:00
parent f9c5c5a91b
commit 4a8e4d4afc
13 changed files with 412 additions and 219 deletions
@@ -0,0 +1,12 @@
class Test {
public static final String ABC = "abc";
void foo() {
System.out.println(ABC);
}
}
class Foo {
void bar() {
System.out.println(Test.ABC);
}
}