mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
redundant exception: ignore recursive calls (IDEA-157773)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// "Remove 'java.io.IOException' from 'f' throws list" "true"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
private void f() <caret>{
|
||||
if (false) f();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Remove 'java.io.IOException' from 'f' throws list" "true"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
private void f() throws <caret>IOException {
|
||||
if (false) f();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user