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/Value.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'website/templates/features/Value.html') diff --git a/website/templates/features/Value.html b/website/templates/features/Value.html index f6ef9403..c41b6b10 100644 --- a/website/templates/features/Value.html +++ b/website/templates/features/Value.html @@ -30,9 +30,9 @@
Lombok will flag any usage of @Value as a warning or error if configured.
- lombok.val.flagUsage = [warning | error] (default: not set) + lombok.noArgsConstructor.extraPrivate = [true | false] (default: false)
- Lombok will flag any usage of val as a warning or error if configured. + If true, lombok will generate a private no-args constructor for any @Value annotated class, which sets all fields to default values (null / 0 / false).
-- cgit