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