aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WithPlain.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/WithPlain.java')
-rw-r--r--test/transform/resource/after-delombok/WithPlain.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithPlain.java b/test/transform/resource/after-delombok/WithPlain.java
index 01fca04e..6a1c46e6 100644
--- a/test/transform/resource/after-delombok/WithPlain.java
+++ b/test/transform/resource/after-delombok/WithPlain.java
@@ -1,3 +1,4 @@
+//version 8: springframework dep is too new to run on j6
class WithPlain {
int i;
final int foo;
@@ -5,11 +6,17 @@ class WithPlain {
this.i = i;
this.foo = foo;
}
+ /**
+ * @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
+ */
@org.springframework.lang.NonNull
@java.lang.SuppressWarnings("all")
public WithPlain withI(final int i) {
return this.i == i ? this : new WithPlain(i, this.foo);
}
+ /**
+ * @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
+ */
@org.springframework.lang.NonNull
@java.lang.SuppressWarnings("all")
public WithPlain withFoo(final int foo) {