aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterLazyInvalid.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2012-07-16 22:24:04 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2012-07-16 22:24:04 +0200
commitb1877a77be41695259108d2c755c87051b3f0d07 (patch)
tree6b804b438e0ce8e8e0e2af85d7bb6267f9bcab17 /test/transform/resource/after-ecj/GetterLazyInvalid.java
parentbd2d76bb546cf60ff8f36318fca4c2d0498d1d43 (diff)
downloadlombok-b1877a77be41695259108d2c755c87051b3f0d07.tar.gz
lombok-b1877a77be41695259108d2c755c87051b3f0d07.tar.bz2
lombok-b1877a77be41695259108d2c755c87051b3f0d07.zip
fixed tests since Robbert Jan's fix for issue 377.
Diffstat (limited to 'test/transform/resource/after-ecj/GetterLazyInvalid.java')
-rw-r--r--test/transform/resource/after-ecj/GetterLazyInvalid.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/transform/resource/after-ecj/GetterLazyInvalid.java b/test/transform/resource/after-ecj/GetterLazyInvalid.java
index eaa22d71..da89c333 100644
--- a/test/transform/resource/after-ecj/GetterLazyInvalid.java
+++ b/test/transform/resource/after-ecj/GetterLazyInvalid.java
@@ -24,12 +24,12 @@ class GetterLazyInvalidNone {
}
@lombok.Getter(lazy = true) class GetterLazyInvalidClass {
private final String fieldName = "";
- public @java.lang.SuppressWarnings("all") String getFieldName() {
- return this.fieldName;
- }
GetterLazyInvalidClass() {
super();
}
+ public @java.lang.SuppressWarnings("all") String getFieldName() {
+ return this.fieldName;
+ }
}
class GetterLazyInvalidNoInit {
private final @lombok.Getter(lazy = true) String fieldName;
@@ -37,4 +37,4 @@ class GetterLazyInvalidNoInit {
super();
this.fieldName = "foo";
}
-} \ No newline at end of file
+}