mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
344 B
Java
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();
|
|
}
|
|
}
|
|
} |