aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterWithDollar.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/GetterWithDollar.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/GetterWithDollar.java')
-rw-r--r--test/transform/resource/after-ecj/GetterWithDollar.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/transform/resource/after-ecj/GetterWithDollar.java b/test/transform/resource/after-ecj/GetterWithDollar.java
index b102ba66..f4bc799c 100644
--- a/test/transform/resource/after-ecj/GetterWithDollar.java
+++ b/test/transform/resource/after-ecj/GetterWithDollar.java
@@ -1,22 +1,22 @@
class GetterWithDollar1 {
@lombok.Getter int $i;
- public @java.lang.SuppressWarnings("all") int get$i() {
- return this.$i;
- }
GetterWithDollar1() {
super();
}
+ public @java.lang.SuppressWarnings("all") int get$i() {
+ return this.$i;
+ }
}
class GetterWithDollar2 {
@lombok.Getter int $i;
@lombok.Getter int i;
+ GetterWithDollar2() {
+ super();
+ }
public @java.lang.SuppressWarnings("all") int get$i() {
return this.$i;
}
public @java.lang.SuppressWarnings("all") int getI() {
return this.i;
}
- GetterWithDollar2() {
- super();
- }
}