Files
openide/java/java-tests/testData/refactoring/introduceVariable/InsideTryWithResources.after.java

11 lines
216 B
Java

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
class Foo {
void test(File f) throws IOException {
try(FileInputStream temp = new FileInputStream(f)) {
}
}
}