mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-119740 Ctrl+Shift+Space does not complete exception type after "final"
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class A{
|
||||
|
||||
{
|
||||
try{
|
||||
throw new Exception();
|
||||
}
|
||||
catch(final Exception <caret>)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
class A{
|
||||
|
||||
{
|
||||
try{
|
||||
throw new Exception();
|
||||
}
|
||||
catch(final <caret>)
|
||||
}
|
||||
}
|
||||
+2
-1
@@ -317,7 +317,8 @@ public class SmartTypeCompletionTest extends LightFixtureCompletionTestCase {
|
||||
checkResultByFile(path + "/after2.java");
|
||||
}
|
||||
|
||||
public void testInsideCatch() throws Exception { doTest(); }
|
||||
public void testInsideCatch() { doTest(); }
|
||||
public void testInsideCatchFinal() { doTest(); }
|
||||
|
||||
public void testGenerics6() throws Exception {
|
||||
String path = "/generics";
|
||||
|
||||
Reference in New Issue
Block a user