move static members with static non-demand imports to preseve non-demand (IDEADEV-40862)

This commit is contained in:
anna
2009-10-19 21:31:57 +04:00
parent 373fa2287c
commit a9a8372082
9 changed files with 48 additions and 5 deletions
@@ -0,0 +1,7 @@
import static B.Z;
public class A {
public static void main(String[] args) {
System.out.println("Z = " + Z);
}
}
@@ -0,0 +1,3 @@
public class B {
public static final String Z = "z";
}
@@ -0,0 +1,2 @@
public class C {
}