mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
12 lines
149 B
Java
12 lines
149 B
Java
// "Remove 'IOException' from 'foo' throws list" "true"
|
|
import java.io.*;
|
|
|
|
class A {
|
|
/**
|
|
* some description
|
|
*/
|
|
private void foo() {
|
|
}
|
|
}
|
|
|