import is redundant if imported class is located in the same directory (IDEA-52733)

This commit is contained in:
anna
2010-03-16 19:35:14 +03:00
parent 17ce947291
commit dc8db62ae4
8 changed files with 40 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
package p1;
class F1 {
F2 f2;
}

View File

@@ -0,0 +1,3 @@
package p1;
public class F2 {}

View File

@@ -0,0 +1,7 @@
package p1;
import p2.F2;
class F1 {
F2 f2;
}

View File

@@ -0,0 +1,3 @@
package p2;
public class F2 {}