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/SetterAccessLevel.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'test/delombok/resource/after/SetterAccessLevel.java') diff --git a/test/delombok/resource/after/SetterAccessLevel.java b/test/delombok/resource/after/SetterAccessLevel.java index d4e7ac23..dce4cc2f 100644 --- a/test/delombok/resource/after/SetterAccessLevel.java +++ b/test/delombok/resource/after/SetterAccessLevel.java @@ -5,19 +5,24 @@ class SetterAccessLevel { boolean isProtected; boolean isPublic; boolean value; + @java.lang.SuppressWarnings("all") private void setIsPrivate(final boolean isPrivate) { this.isPrivate = isPrivate; } + @java.lang.SuppressWarnings("all") void setIsPackage(final boolean isPackage) { this.isPackage = isPackage; } + @java.lang.SuppressWarnings("all") protected void setIsProtected(final boolean isProtected) { this.isProtected = isProtected; } + @java.lang.SuppressWarnings("all") public void setIsPublic(final boolean isPublic) { this.isPublic = isPublic; } + @java.lang.SuppressWarnings("all") public void setValue(final boolean value) { this.value = value; } -} +} \ No newline at end of file -- cgit