From fc04b74c67f05b1ba099275645b75e6373ac3b5a Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 27 Feb 2020 22:26:36 +0100 Subject: [fixes #2377] documentation about configkey lombok.noArgsConstructor.extraPrivate was incorrect --- website/templates/features/constructor.html | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'website/templates/features/constructor.html') diff --git a/website/templates/features/constructor.html b/website/templates/features/constructor.html index 02380319..f9ee775d 100644 --- a/website/templates/features/constructor.html +++ b/website/templates/features/constructor.html @@ -42,6 +42,10 @@ lombok.copyableAnnotations = [A list of fully qualified types] (default: empty list)
Lombok will copy any of these annotations from the field to the constructor parameter, the setter parameter, and the getter method. Note that lombok ships with a bunch of annotations 'out of the box' which are known to be copyable: All popular nullable/nonnull annotations. +
+ lombok.noArgsConstructor.extraPrivate = [true | false] (default: false) +
+ If true, lombok will generate a private no-args constructor for any @Value or @Data annotated class, which sets all fields to default values (null / 0 / false).
-- cgit