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

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;
}
}