mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
Mark as 'deleted' all non-existent paths obtained from dependency caches. This will automatically clean stale non-existent paths from dependency data in situations when deleted paths info for build targets is lost or not available (fixes problem when old target caches are lost and non-existing files from dependency caches are sent to compilation: IDEA-185750)
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
package ppp;
|
||||
|
||||
public interface Iface {
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package ppp;
|
||||
|
||||
public interface Iface {
|
||||
void foo();
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package ppp;
|
||||
|
||||
public class Impl1 implements Iface{
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package ppp;
|
||||
|
||||
public class Impl1 implements Iface{
|
||||
public void foo() {}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package ppp;
|
||||
|
||||
public class Impl2 implements Iface{
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
package ppp;
|
||||
|
||||
public class Impl2 implements Iface{
|
||||
}
|
||||
Reference in New Issue
Block a user