mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
IDEA-147454 Smart completion add parentheses to class declaration in throws statement
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
Reference in New Issue
Block a user