IDEA-119740 Ctrl+Shift+Space does not complete exception type after "final"

This commit is contained in:
peter
2014-01-23 10:45:22 +01:00
parent b2dc0d2beb
commit 76956c0ebe
4 changed files with 24 additions and 5 deletions
@@ -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>)
}
}