aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/GetterWithDollar.java
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2010-11-09 20:37:25 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2010-11-09 20:37:25 +0100
commit46d471e9c3dc32b03c34804df1819739a4dffc50 (patch)
tree9c31d75426bf8fdb1943bef2a996485640f7bf5e /test/transform/resource/after-ecj/GetterWithDollar.java
parent92b7efac48c18f22b81098cf1d844a891bb71648 (diff)
parent98d8a9f63b3183005174abb7691a1692347b9a2e (diff)
downloadlombok-46d471e9c3dc32b03c34804df1819739a4dffc50.tar.gz
lombok-46d471e9c3dc32b03c34804df1819739a4dffc50.tar.bz2
lombok-46d471e9c3dc32b03c34804df1819739a4dffc50.zip
Merge branch 'master' into annoGetSet
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 f4bc799c..b102ba66 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;
- GetterWithDollar1() {
- super();
- }
public @java.lang.SuppressWarnings("all") int get$i() {
return this.$i;
}
+ GetterWithDollar1() {
+ super();
+ }
}
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();
+ }
}