diff options
Diffstat (limited to 'test/transform/resource/after-delombok/GetterWithDollar.java')
-rw-r--r-- | test/transform/resource/after-delombok/GetterWithDollar.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/GetterWithDollar.java b/test/transform/resource/after-delombok/GetterWithDollar.java index 520f4ea5..21e5fac8 100644 --- a/test/transform/resource/after-delombok/GetterWithDollar.java +++ b/test/transform/resource/after-delombok/GetterWithDollar.java @@ -1,6 +1,7 @@ class GetterWithDollar1 { int $i; @java.lang.SuppressWarnings("all") + @javax.annotation.Generated("lombok") public int get$i() { return this.$i; } @@ -9,10 +10,12 @@ class GetterWithDollar2 { int $i; int i; @java.lang.SuppressWarnings("all") + @javax.annotation.Generated("lombok") public int get$i() { return this.$i; } @java.lang.SuppressWarnings("all") + @javax.annotation.Generated("lombok") public int getI() { return this.i; } |