mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-15 18:53:43 +07:00
13 lines
235 B
Plaintext
13 lines
235 B
Plaintext
import java.io.*;
|
|
|
|
class Test {
|
|
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
|
|
try {
|
|
}
|
|
catch (IOException e) {
|
|
throw new IOException();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
} |