diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-03-18 19:30:02 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2011-03-18 19:30:02 +0100 |
commit | 04e9397971d3689e0710df026f673f8b0a6cb685 (patch) | |
tree | 3ca47a3bc926a5171f5e939743f6b2d3daea63e1 /test/transform/resource/after-ecj/CleanupName.java | |
parent | 38b4128f899e81d8a5d19dca8b6cd1357ca3bd1a (diff) | |
download | lombok-04e9397971d3689e0710df026f673f8b0a6cb685.tar.gz lombok-04e9397971d3689e0710df026f673f8b0a6cb685.tar.bz2 lombok-04e9397971d3689e0710df026f673f8b0a6cb685.zip |
Rewritten @Cleanup's new null analysis prevention to not use
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.
Diffstat (limited to 'test/transform/resource/after-ecj/CleanupName.java')
-rw-r--r-- | test/transform/resource/after-ecj/CleanupName.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/after-ecj/CleanupName.java b/test/transform/resource/after-ecj/CleanupName.java index 8948e91d..f3f725f2 100644 --- a/test/transform/resource/after-ecj/CleanupName.java +++ b/test/transform/resource/after-ecj/CleanupName.java @@ -10,7 +10,7 @@ class CleanupName { } finally { - if ((lombok.Lombok.preventNullAnalysis(o) != null)) + if ((java.util.Collections.singletonList(o).get(0) != null)) { o.toString(); } @@ -24,7 +24,7 @@ class CleanupName { } finally { - if ((lombok.Lombok.preventNullAnalysis(o) != null)) + if ((java.util.Collections.singletonList(o).get(0) != null)) { o.toString(); } |