SurroundWithTryCatchFix: support local classes properly

GitOrigin-RevId: 50ee098d1287f976331692361ff29bf3dbbbd26a
This commit is contained in:
Tagir Valeev
2020-04-08 08:41:53 +00:00
committed by intellij-monorepo-bot
parent d26a9eee44
commit 5e592af488
3 changed files with 20 additions and 9 deletions
@@ -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,5 +1,4 @@
// "Surround with try/catch" "false"
// "Add exception to method signature" "false"
// "Surround with try/catch" "true"
import java.io.*;
class C {