From d4c3c5580a9fe3ca3d66b1ad425050a894d2b421 Mon Sep 17 00:00:00 2001 From: Andre Brait Date: Fri, 4 Dec 2020 17:10:22 +0100 Subject: Fix typo --- website/templates/features/EqualsAndHashCode.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'website') diff --git a/website/templates/features/EqualsAndHashCode.html b/website/templates/features/EqualsAndHashCode.html index d7c5b583..474b4ee2 100644 --- a/website/templates/features/EqualsAndHashCode.html +++ b/website/templates/features/EqualsAndHashCode.html @@ -13,7 +13,7 @@

NEW in Lombok 1.14.0: To put annotations on the other parameter of the equals (and, if relevant, canEqual) method, you can use onParam=@__({@AnnotationsHere}). Be careful though! This is an experimental feature. For more details see the documentation on the onX feature.

- NEW in Lombok 1.18.16: Caching the result of the generated hashCode() can be cached by setting cacheStrategy to a value other than CacheStrategy.NEVER. Do not use this if objects of the annotated class can be modified in any way that would lead to the result of hashCode() changing. + NEW in Lombok 1.18.16: The result of the generated hashCode() can be cached by setting cacheStrategy to a value other than CacheStrategy.NEVER. Do not use this if objects of the annotated class can be modified in any way that would lead to the result of hashCode() changing.

-- cgit