fix module-info integrate after errors (IDEA-181208)

This commit is contained in:
Eugene Zhuravlev
2017-10-30 16:21:53 +03:00
parent 7a21735d70
commit 29ea6cca1f
9 changed files with 53 additions and 3 deletions
@@ -0,0 +1,7 @@
package ppp;
public class Util {
public static void perform() {
System.out.println("Util.perform");
}
}
@@ -0,0 +1,9 @@
package qqq;
import ppp.*;
public class Client {
public void perform() { error
Util.perform();
}
}
@@ -0,0 +1,9 @@
package qqq;
import ppp.*;
public class Client {
public void perform() {
Util.perform();
}
}