aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java')
-rw-r--r--test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java b/test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java
deleted file mode 100644
index 741342f7..00000000
--- a/test/transform/resource/after-ecj/SetterWitherJavadocParamCopy.java
+++ /dev/null
@@ -1,13 +0,0 @@
-class SetterWitherJavadocParamCopy {
- private @lombok.Setter @lombok.experimental.Wither int fieldName;
- public SetterWitherJavadocParamCopy(int f) {
- super();
- this.fieldName = f;
- }
- public @java.lang.SuppressWarnings("all") void setFieldName(final int fieldName) {
- this.fieldName = fieldName;
- }
- public @java.lang.SuppressWarnings("all") SetterWitherJavadocParamCopy withFieldName(final int fieldName) {
- return ((this.fieldName == fieldName) ? this : new SetterWitherJavadocParamCopy(fieldName));
- }
-}