mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
1. global and local inspections are merged to one 2. local inspection reports "non-final" methods (if cheap enough) IDEA-177230
14 lines
184 B
Java
14 lines
184 B
Java
// "Remove 'IOException' from 'f' throws list" "true"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void f() throws IOException {
|
|
}
|
|
}
|
|
|
|
class b extends a {
|
|
void f() throws <caret>IOException {
|
|
}
|
|
}
|
|
|