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.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/WithPlain.java b/test/transform/resource/after-delombok/WithPlain.java
index 1a6ff22f..01fca04e 100644
--- a/test/transform/resource/after-delombok/WithPlain.java
+++ b/test/transform/resource/after-delombok/WithPlain.java
@@ -5,10 +5,12 @@ class WithPlain {
this.i = i;
this.foo = foo;
}
+ @org.springframework.lang.NonNull
@java.lang.SuppressWarnings("all")
public WithPlain withI(final int i) {
return this.i == i ? this : new WithPlain(i, this.foo);
}
+ @org.springframework.lang.NonNull
@java.lang.SuppressWarnings("all")
public WithPlain withFoo(final int foo) {
return this.foo == foo ? this : new WithPlain(this.i, foo);