mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
do not delete output files corresponding to non-existing sources, if these outputs are already associated with existing sources from other modules that have been already compiled (example: moving some class to a dependent module with the same output root)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
Compiling files:
|
||||
moduleA/src/com/ppp/Inner.java
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/com/ppp/B.class
|
||||
End of files
|
||||
Compiling files:
|
||||
moduleB/src/com/ppp/B.java
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/com/ppp/B.class
|
||||
End of files
|
||||
Compiling files:
|
||||
moduleB/src/com/ppp/B.java
|
||||
End of files
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package com.ppp;
|
||||
|
||||
class Inner {
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
package com.ppp;
|
||||
|
||||
public class B {
|
||||
private Inner inner;
|
||||
}
|
||||
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package com.ppp;
|
||||
|
||||
class Inner {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user