mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
do not mark for recompilation files that depend on the files compiled with errors
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
Cleaning output files:
|
||||
out/production/DontMarkDependentsAfterCompileErrors/packageA/Server.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/packageA/Server.java
|
||||
End of files
|
||||
Compiling files:
|
||||
src/packageA/Server.java
|
||||
End of files
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package packageA;
|
||||
|
||||
public class Client {
|
||||
|
||||
public void method(Server server) {
|
||||
server.method();
|
||||
}
|
||||
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package packageA;
|
||||
|
||||
public class Server {
|
||||
public void method() {
|
||||
System.out.println("Server.method");
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package packageA;
|
||||
|
||||
public class Server {
|
||||
public void method() {
|
||||
System.out.println("Server.method"); <some-error!>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user