From 0d7df01a0711604ce3da57e11815d376c7071870 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Tue, 20 Jul 2010 01:35:40 +0200 Subject: Updated the tests to reflect recent modifications: use 'this' where possible and add @SuppressWarnings for all generated fields and methods. --- test/delombok/resource/after/GetterBoolean.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'test/delombok/resource/after/GetterBoolean.java') diff --git a/test/delombok/resource/after/GetterBoolean.java b/test/delombok/resource/after/GetterBoolean.java index 639d6dc9..a727e49b 100644 --- a/test/delombok/resource/after/GetterBoolean.java +++ b/test/delombok/resource/after/GetterBoolean.java @@ -2,14 +2,17 @@ class Getter { boolean foo; boolean isBar; boolean hasBaz; + @java.lang.SuppressWarnings("all") public boolean isFoo() { - return foo; + return this.foo; } + @java.lang.SuppressWarnings("all") public boolean isBar() { - return isBar; + return this.isBar; } + @java.lang.SuppressWarnings("all") public boolean hasBaz() { - return hasBaz; + return this.hasBaz; } } class MoreGetter { -- cgit