Files
openide/java/java-tests/testData/refactoring/extractMethod/LesyaBug_after.java
Alexey Kudravtsev b6f59a2620 IDEADEV-40411
2009-09-16 18:29:54 +04:00

20 lines
344 B
Java

import java.io.IOException;
import java.io.OutputStream;
class A {
{
try {
OutputStream out = null;
newMethod(out);
} catch(Throwable t) {
}
}
private void newMethod(OutputStream out) throws IOException {
try {
} finally {
out.close();
}
}
}