fix: after deletion of files that previously could not be compiled (had errors), those paths were not recognized as deleted and could be scheduled for recompilation

This commit is contained in:
Eugene Zhuravlev
2012-09-21 18:58:59 +04:00
parent e483d67491
commit 6ec02f5a9d
9 changed files with 95 additions and 33 deletions
@@ -0,0 +1,12 @@
Cleaning output files:
out/production/DeleteClassAfterCompileErrors/packageA/Server.class
End of files
Compiling files:
src/packageA/Server.java
End of files
Cleaning output files:
out/production/DeleteClassAfterCompileErrors/packageA/Client.class
End of files
Compiling files:
src/packageA/Client.java
End of files
@@ -0,0 +1,9 @@
package packageA;
public class Client {
public void method(Server server) {
server.method();
}
}
@@ -0,0 +1,7 @@
package packageA;
public class Server {
public void method() {
System.out.println("Server.method");
}
}
@@ -0,0 +1,7 @@
package packageA;
public class Server {
public void method() {
System.out.println("Server.method"); <some-error!>
}
}