blob: 8c224240f4147278e22c4e0544833d891bf677d7 [file] [log] [blame]
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;
}
}