mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-135162 Smart Completion proposes nothing in catch statements
This commit is contained in:
@@ -6,7 +6,7 @@ class Foo {
|
||||
public void run() {
|
||||
try {
|
||||
throw new IOException();
|
||||
} catch (<caret>) {
|
||||
} catch (IO<caret>) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class A{
|
||||
|
||||
{
|
||||
try{
|
||||
smth();
|
||||
}
|
||||
catch(ProcessCanceledException <caret>)
|
||||
}
|
||||
}
|
||||
|
||||
class ProcessCanceledException extends Throwable {}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
class A{
|
||||
|
||||
{
|
||||
try{
|
||||
smth();
|
||||
}
|
||||
catch(PCE<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
class ProcessCanceledException extends Throwable {}
|
||||
Reference in New Issue
Block a user