blob: 1853d8acca74d6abfce378ddce6c1b92ee576157 [file] [log] [blame]
import java.io.*;
class Test {
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
try {
}
catch (IOException e) {
throw new IOException();
}
return null;
}
}