introduce constant: add after dependant code (IDEA-66414)

This commit is contained in:
anna
2011-03-10 15:10:30 +01:00
parent 9cc7758d3a
commit cae6eb927a
4 changed files with 50 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
class Test {
public void foo(){
System.out.println(<selection>const1.charAt(0)</selection>);
}
public static final String const1 = "";
}

View File

@@ -0,0 +1,9 @@
class Test {
public void foo(){
System.out.println(xxx);
}
public static final String const1 = "";
public static final char xxx = const1.charAt(0);
}