mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +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;
|
|
}
|
|
|
|
} |