IDEA-147454 Smart completion add parentheses to class declaration in throws statement

This commit is contained in:
peter
2015-11-06 16:07:41 +01:00
parent 558f9abdd6
commit 96431dd854
4 changed files with 35 additions and 8 deletions
@@ -0,0 +1,10 @@
class FirstException extends Exception {}
class SecondException extends Exception {}
interface I {
void method() throws FirstException, SecondException;
}
class C implements I {
void method() throws FirstException, SecondException<caret>;
}
@@ -0,0 +1,10 @@
class FirstException extends Exception {}
class SecondException extends Exception {}
interface I {
void method() throws FirstException, SecondException;
}
class C implements I {
void method() throws FirstException, Sec<caret>;
}