mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
Project Coin multi-catch support
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
// "Delete catch for 'java.io.FileNotFoundException'" "true"
|
||||
import java.io.*;
|
||||
|
||||
class C {
|
||||
void m() {
|
||||
try {
|
||||
int p = 0;
|
||||
}
|
||||
catch (IOException | <caret>FileNotFoundException /*somethihg*/ e) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user