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.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/delombok/resource/after/SetterAccessLevel.java b/test/delombok/resource/after/SetterAccessLevel.java
deleted file mode 100644
index dce4cc2f..00000000
--- a/test/delombok/resource/after/SetterAccessLevel.java
+++ /dev/null
@@ -1,28 +0,0 @@
-class SetterAccessLevel {
- boolean isNone;
- boolean isPrivate;
- boolean isPackage;
- 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