Files
openide/java/java-tests/testData/refactoring/inlineLocal/InlineFromTryCatchAvailable.java

15 lines
311 B
Java

import java.io.*;
class Test {
private static InputStream getInputUnchecked(InputStream inputSupplier) throws IOException {
InputStream in;
try {
in = null;
}
catch (IOException e) {
throw new IOException();
}
return i<caret>n;
}
}