mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
fix module-info integrate after errors (IDEA-181208)
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
module A {
|
||||
exports ppp;
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
module A {
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package ppp;
|
||||
|
||||
public class Util {
|
||||
public static void perform() {
|
||||
System.out.println("Util.perform");
|
||||
}
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
module B {
|
||||
requires A;
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package qqq;
|
||||
|
||||
import ppp.*;
|
||||
|
||||
public class Client {
|
||||
public void perform() { error
|
||||
Util.perform();
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package qqq;
|
||||
|
||||
import ppp.*;
|
||||
|
||||
public class Client {
|
||||
public void perform() {
|
||||
Util.perform();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user