aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterLazy.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-02-14 16:39:48 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-02-14 16:39:48 +0100
commit06581537f24fe31ee096960be496bc503059a95e (patch)
tree3732f6fe2117c390f9812b5961dd2d95d4293026 /test/transform/resource/after-ecj/GetterLazy.java
parent5e9e16a6b98da5a17f5efe785917bc1e92265fc8 (diff)
downloadlombok-06581537f24fe31ee096960be496bc503059a95e.tar.gz
lombok-06581537f24fe31ee096960be496bc503059a95e.tar.bz2
lombok-06581537f24fe31ee096960be496bc503059a95e.zip
More test files, test files updated to be valid java, and ecj test now goes through the complete compile process. This means val and @Delegate testing is now enabled.
TODO: Update -eclipse tests.
Diffstat (limited to 'test/transform/resource/after-ecj/GetterLazy.java')
-rw-r--r--test/transform/resource/after-ecj/GetterLazy.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/transform/resource/after-ecj/GetterLazy.java b/test/transform/resource/after-ecj/GetterLazy.java
index 669a9a81..89aaa40f 100644
--- a/test/transform/resource/after-ecj/GetterLazy.java
+++ b/test/transform/resource/after-ecj/GetterLazy.java
@@ -14,7 +14,8 @@ class GetterLazy {
value = this.fieldName.get();
if ((value == null))
{
- value = new java.util.concurrent.atomic.AtomicReference<ValueType>(new ValueType());
+ final ValueType actualValue = new ValueType();
+ value = new java.util.concurrent.atomic.AtomicReference<ValueType>(actualValue);
this.fieldName.set(value);
}
}