mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
prefer thrown exceptions in catch block parameter type completion (IDEA-125316)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
import java.io.*;
|
||||
|
||||
class Foo {
|
||||
{
|
||||
try {
|
||||
foo();
|
||||
} catch (<caret>)
|
||||
}
|
||||
|
||||
private void foo() throws FileNotFoundException {
|
||||
}
|
||||
|
||||
private void bar() throws ArrayIndexOutOfBoundsException {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user