mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
13 lines
200 B
Java
13 lines
200 B
Java
// "Remove 'IOException' from 'foo' throws list" "true"
|
|
import java.io.*;
|
|
|
|
class A {
|
|
/**
|
|
* some description
|
|
* @throws IOException
|
|
*/
|
|
private void foo() throws <caret>IOException {
|
|
}
|
|
}
|
|
|