prefer thrown exceptions in catch block parameter type completion (IDEA-125316)

This commit is contained in:
peter
2014-06-13 15:40:21 +02:00
parent 01bb23e701
commit 6a538846f1
4 changed files with 49 additions and 5 deletions
@@ -0,0 +1,15 @@
import java.io.*;
class Foo {
{
try {
foo();
} catch (<caret>)
}
private void foo() throws FileNotFoundException {
}
private void bar() throws ArrayIndexOutOfBoundsException {
}
}