mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
[java] Remove on-demand imports referring to old package name after package rename (IDEA-171422)
GitOrigin-RevId: c54007736ce960ad874f82819e88519766d92a0a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
64cc3f50f4
commit
fb03f800df
@@ -0,0 +1,7 @@
|
||||
package a.b;
|
||||
|
||||
import x.y.K;
|
||||
|
||||
public class J {
|
||||
K k = new K();
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package c;
|
||||
|
||||
public class L {}
|
||||
@@ -0,0 +1,4 @@
|
||||
package x.y;
|
||||
|
||||
public class K {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package a.b;
|
||||
|
||||
import c.d.*;
|
||||
|
||||
public class J {
|
||||
K k = new K();
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
package c;
|
||||
|
||||
public class L {}
|
||||
@@ -0,0 +1,4 @@
|
||||
package c.d;
|
||||
|
||||
public class K {
|
||||
}
|
||||
Reference in New Issue
Block a user