aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/SetterAccessLevel.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/delombok/resource/after/SetterAccessLevel.java')
-rw-r--r--test/delombok/resource/after/SetterAccessLevel.java7
1 files changed, 6 insertions, 1 deletions
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