mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-22 14:31:25 +07:00
redundant throws inspection:
1. global and local inspections are merged to one 2. local inspection reports "non-final" methods (if cheap enough) IDEA-177230
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Remove 'IOException' from 'f' throws list" "false"
|
||||
import java.io.*;
|
||||
|
||||
class a {
|
||||
void f() throws <caret>IOException {
|
||||
}
|
||||
}
|
||||
|
||||
class b extends a {
|
||||
void f() throws IOException {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user