mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 14:22:11 +00:00
Lombok.preventNullAnalysis but go with Collections.singletonList(expr).get(0) instead; while this does create a pointless object, it doesn't cause a clash when eclipse has lombok 0.10 installed but the project uses 0.9, which doesn't have preventNullAnalysis. Eventually, once 0.9 is long forgotten, this can be reverted.
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();
|
|
}
|
|
}
|
|
}
|
|
} |