aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/WithPlain.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-ecj/WithPlain.java')
-rw-r--r--test/transform/resource/after-ecj/WithPlain.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/transform/resource/after-ecj/WithPlain.java b/test/transform/resource/after-ecj/WithPlain.java
index 4203f540..66a1455b 100644
--- a/test/transform/resource/after-ecj/WithPlain.java
+++ b/test/transform/resource/after-ecj/WithPlain.java
@@ -7,10 +7,10 @@ class WithPlain {
this.i = i;
this.foo = foo;
}
- public @java.lang.SuppressWarnings("all") WithPlain withI(final int i) {
+ public @org.springframework.lang.NonNull @java.lang.SuppressWarnings("all") WithPlain withI(final int i) {
return ((this.i == i) ? this : new WithPlain(i, this.foo));
}
- public @java.lang.SuppressWarnings("all") WithPlain withFoo(final int foo) {
+ public @org.springframework.lang.NonNull @java.lang.SuppressWarnings("all") WithPlain withFoo(final int foo) {
return ((this.foo == foo) ? this : new WithPlain(this.i, foo));
}
}