From 94d11d89a79d6cb417bac8261449c3f895f84990 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Nov 2018 21:30:23 +0100 Subject: [issue #1938] addressing some small issues with the documentation. --- website/templates/features/experimental/FieldNameConstants.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website/templates/features/experimental') diff --git a/website/templates/features/experimental/FieldNameConstants.html b/website/templates/features/experimental/FieldNameConstants.html index 283ebe55..50faf804 100644 --- a/website/templates/features/experimental/FieldNameConstants.html +++ b/website/templates/features/experimental/FieldNameConstants.html @@ -44,7 +44,7 @@ <@f.smallPrint>

- Starting with lombok v1.18.5, lombok will silently skip generating anything that already exists. You can define the inner Fields enum/class yourself, + Starting with lombok v1.18.6, lombok will silently skip generating anything that already exists. You can define the inner Fields enum/class yourself, in which case lombok will add all the enum constants / public static final fields you haven't written yourself.

From lombok v1.16.22 to lombok v1.18.2, this feature generated constants inside the type directly; the name of these fields would for example turn field exampleFieldName into public static final String FIELD_EXAMPLE_FIELD_NAME = "exampleFieldName";. The prefix and suffix (here, FIELD_, and the empty string) were configurable. Starting with lombok v1.18.4 this feature has been redesigned into generating an inner type as described above. -- cgit