diff options
Diffstat (limited to 'test/delombok/resource/after/GetterPlain.java')
-rw-r--r-- | test/delombok/resource/after/GetterPlain.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/delombok/resource/after/GetterPlain.java b/test/delombok/resource/after/GetterPlain.java index 5e8cc965..359d46e2 100644 --- a/test/delombok/resource/after/GetterPlain.java +++ b/test/delombok/resource/after/GetterPlain.java @@ -1,10 +1,12 @@ class GetterPlain { int i; int foo; + @java.lang.SuppressWarnings("all") public int getI() { - return i; + return this.i; } + @java.lang.SuppressWarnings("all") public int getFoo() { - return foo; + return this.foo; } }
\ No newline at end of file |