mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-14 10:19:42 +00:00
23 lines
371 B
Java
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();
|
|
}
|
|
}
|
|
}
|
|
}
|