don't suggest final after unfinished try (IDEA-104498)

This commit is contained in:
peter
2013-05-07 18:17:05 +02:00
parent 9e2b92eab7
commit 90597f9f4f
4 changed files with 18 additions and 13 deletions
@@ -0,0 +1,8 @@
public class Util {
void foo() {
try {
}
<caret>
}
}
@@ -1,6 +1,6 @@
class A {
{
try {}
try {} catch (Exception e) {}
fin<caret>x
}
}