Files
lombok/test/transform/resource/after-delombok/CleanupPlain.java
T

23 lines
371 B
Java

import java.io.*;
class CleanupPlain {
void test() throws Exception {
InputStream in = new FileInputStream("in");
try {
OutputStream out = new FileOutputStream("out");
try {
if (in.markSupported()) {
out.flush();
}
} finally {
if (out != null) {
out.close();
}
}
} finally {
if (in != null) {
in.close();
}
}
}
}