aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/CleanupPlain.java
AgeCommit message (Collapse)Author
2011-03-18Rewritten @Cleanup's new null analysis prevention to not useReinier Zwitserloot
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.
2010-11-09Added lombok.Lombok.preventNullAnalysis to the null test in @Cleanup to suppressRoel Spilker
warnings about variables that cannot be null
2010-11-02Issue 154: Add null-check to @CleanupRoel Spilker
2010-07-21refactored the tests to prepare running ecj as well as delombok.Reinier Zwitserloot