mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
SurroundWithTryCatchFix: support local classes properly
GitOrigin-RevId: 50ee098d1287f976331692361ff29bf3dbbbd26a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
d26a9eee44
commit
5e592af488
+18
@@ -0,0 +1,18 @@
|
||||
// "Surround with try/catch" "true"
|
||||
import java.io.*;
|
||||
|
||||
class C {
|
||||
public void m() {
|
||||
class Local {
|
||||
InputStream in;
|
||||
|
||||
{
|
||||
try {
|
||||
in = new FileInputStream("");
|
||||
} catch (FileNotFoundException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-2
@@ -1,5 +1,4 @@
|
||||
// "Surround with try/catch" "false"
|
||||
// "Add exception to method signature" "false"
|
||||
// "Surround with try/catch" "true"
|
||||
import java.io.*;
|
||||
|
||||
class C {
|
||||
|
||||
Reference in New Issue
Block a user