mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
import is redundant if imported class is located in the same directory (IDEA-52733)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package p1;
|
||||
|
||||
class F1 {
|
||||
F2 f2;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package p1;
|
||||
|
||||
public class F2 {}
|
||||
@@ -0,0 +1,7 @@
|
||||
package p1;
|
||||
|
||||
import p2.F2;
|
||||
|
||||
class F1 {
|
||||
F2 f2;
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package p2;
|
||||
|
||||
public class F2 {}
|
||||
Reference in New Issue
Block a user