add quickfix for non-disjoint multi-catch

This commit is contained in:
Bas Leijdekkers
2016-02-12 16:28:12 +01:00
parent 5fb3774b58
commit 6e43997abd
3 changed files with 30 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
// "Delete catch for 'java.lang.RuntimeException'" "true"
import java.io.*;
class C {
void m() {
try {
int p = 0;
}
catch (<caret>RuntimeException | Exception e) {
}
}
}