mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
18 lines
316 B
Java
18 lines
316 B
Java
import java.io.*;
|
|
|
|
class Test {
|
|
private static InputStream getInputUnchecked() throws IOException {
|
|
InputStream in;
|
|
try {
|
|
in = ff();
|
|
}
|
|
catch (IOException e) {
|
|
throw new IOException();
|
|
}
|
|
return i<caret>n;
|
|
}
|
|
|
|
static InputStream ff() throws IOException {
|
|
return null;
|
|
}
|
|
} |