aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-eclipse/SetterOnStatic.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-eclipse/SetterOnStatic.java')
-rw-r--r--test/transform/resource/after-eclipse/SetterOnStatic.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/transform/resource/after-eclipse/SetterOnStatic.java b/test/transform/resource/after-eclipse/SetterOnStatic.java
deleted file mode 100644
index c1e4d3d1..00000000
--- a/test/transform/resource/after-eclipse/SetterOnStatic.java
+++ /dev/null
@@ -1,15 +0,0 @@
-class Setter {
- static @lombok.Setter boolean foo;
- static @lombok.Setter int bar;
- <clinit>() {
- }
- public static @java.lang.SuppressWarnings("all") void setFoo(final boolean foo) {
- Setter.foo = foo;
- }
- public static @java.lang.SuppressWarnings("all") void setBar(final int bar) {
- Setter.bar = bar;
- }
- Setter() {
- super();
- }
-}