mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-17 20:11:25 +07:00
add quickfix for non-disjoint multi-catch
This commit is contained in:
@@ -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) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user