mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-93760 External build: incremental make does not pick up non-compilable overriding method throwing checked exception
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
Cleaning output files:
|
||||
out/production/RemoveThrowsInBaseMethod/ThrowingTop.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/ThrowingTop.java
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/RemoveThrowsInBaseMethod/ThrowingBottom.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/ThrowingBottom.java
|
||||
End of files
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
public class ThrowingTop {
|
||||
public void spoil() {
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
<testData>
|
||||
|
||||
<deleted_by_make>
|
||||
<file path="classes/ThrowingTop.class" />
|
||||
<file path="classes/ThrowingBottom.class" />
|
||||
</deleted_by_make>
|
||||
|
||||
<recompile>
|
||||
<file path="source/ThrowingBottom.java" />
|
||||
</recompile>
|
||||
|
||||
</testData>
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class Checked extends Exception {
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class ThrowingBottom extends ThrowingTop{
|
||||
@Override
|
||||
public void spoil() throws Checked {
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
public class ThrowingTop {
|
||||
public void spoil() throws Checked {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user