aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WitherOnClass.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/transform/resource/after-delombok/WitherOnClass.java')
-rw-r--r--test/transform/resource/after-delombok/WitherOnClass.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/transform/resource/after-delombok/WitherOnClass.java b/test/transform/resource/after-delombok/WitherOnClass.java
index 93309c89..abc93446 100644
--- a/test/transform/resource/after-delombok/WitherOnClass.java
+++ b/test/transform/resource/after-delombok/WitherOnClass.java
@@ -36,7 +36,7 @@ class WitherOnClass3 {
@java.lang.SuppressWarnings("all")
public WitherOnClass3 withNonNull(@lombok.NonNull final String nonNull) {
if (nonNull == null) {
- throw new java.lang.NullPointerException("nonNull is marked @NonNull but is null");
+ throw new java.lang.NullPointerException("nonNull is marked non-null but is null");
}
return this.nonNull == nonNull ? this : new WitherOnClass3(this.couldBeNull, nonNull);
}