mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-31 22:17:45 +00:00
850c3eaf07
And as expected the tests shows that @Synchronized and @SneakyThrows are currently broken for eclipse but not for ecj.
35 lines
764 B
Java
35 lines
764 B
Java
import lombok.Cleanup;
|
|
import java.io.*;
|
|
class CleanupPlain {
|
|
CleanupPlain() {
|
|
super();
|
|
}
|
|
void test() throws Exception {
|
|
@lombok.Cleanup InputStream in = new FileInputStream("in");
|
|
try
|
|
{
|
|
@Cleanup OutputStream out = new FileOutputStream("out");
|
|
try
|
|
{
|
|
if (in.markSupported())
|
|
{
|
|
out.flush();
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if ((java.util.Collections.singletonList(out).get(0) != null))
|
|
{
|
|
out.close();
|
|
}
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
if ((java.util.Collections.singletonList(in).get(0) != null))
|
|
{
|
|
in.close();
|
|
}
|
|
}
|
|
}
|
|
} |