mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
more java tests moved to community
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
// "Delete catch for 'java.io.IOException'" "false"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
void f(int i) {
|
||||
try {
|
||||
int p = 0;
|
||||
throw new IOException();
|
||||
}
|
||||
catch (<caret>IOException e) {
|
||||
}
|
||||
catch (Exception e) {
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user