diff options
Diffstat (limited to 'test/delombok/resource/after/GetterWithDollar.java')
-rw-r--r-- | test/delombok/resource/after/GetterWithDollar.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/delombok/resource/after/GetterWithDollar.java b/test/delombok/resource/after/GetterWithDollar.java index 56be0249..9e02ccb8 100644 --- a/test/delombok/resource/after/GetterWithDollar.java +++ b/test/delombok/resource/after/GetterWithDollar.java @@ -1,15 +1,15 @@ class GetterWithDollar1 { int $i; - + @java.lang.SuppressWarnings("all") public int getI() { - return $i; + return this.$i; } } class GetterWithDollar2 { int $i; int i; - + @java.lang.SuppressWarnings("all") public int getI() { - return i; + return this.i; } }
\ No newline at end of file |