From 65b285b0b5f850ef587f52e134c29eabd4a580ae Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Tue, 26 Mar 2019 00:11:51 +0100 Subject: typo --- website/templates/features/NonNull.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/templates/features/NonNull.html b/website/templates/features/NonNull.html index b09f0cda..e01a3088 100644 --- a/website/templates/features/NonNull.html +++ b/website/templates/features/NonNull.html @@ -23,7 +23,7 @@
lombok.nonNull.exceptionType = [NullPointerException | IllegalArgumentException | Assertion] (default: NullPointerException).
- When lombok generates a null-check if statement, by default, a java.lang.NullPointerException will be thrown with 'field name is marked @non-null but is null' as the exception message. However, you can use IllegalArgumentException in this configuration key to have lombok throw that exception with this message instead. By using Assertion, an assert statement with the same message will be generated. + When lombok generates a null-check if statement, by default, a java.lang.NullPointerException will be thrown with 'field name is marked non-null but is null' as the exception message. However, you can use IllegalArgumentException in this configuration key to have lombok throw that exception with this message instead. By using Assertion, an assert statement with the same message will be generated.
lombok.nonNull.flagUsage = [warning | error] (default: not set)
-- cgit