diff options
author | Andre Brait <andrebrait@gmail.com> | 2020-07-13 19:45:29 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-09-24 22:25:15 +0200 |
commit | b62ce8fb2fe5348e37da4025b7550f21876f6e28 (patch) | |
tree | 69933c6fc3a86100083e026671766fbafdb65ad5 /src/core | |
parent | 4788df3fb39a981fd7c6f055823ead221de04643 (diff) | |
download | lombok-b62ce8fb2fe5348e37da4025b7550f21876f6e28.tar.gz lombok-b62ce8fb2fe5348e37da4025b7550f21876f6e28.tar.bz2 lombok-b62ce8fb2fe5348e37da4025b7550f21876f6e28.zip |
Fix typo
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lombok/EqualsAndHashCode.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lombok/EqualsAndHashCode.java b/src/core/lombok/EqualsAndHashCode.java index 5191ee0c..279e6e3d 100644 --- a/src/core/lombok/EqualsAndHashCode.java +++ b/src/core/lombok/EqualsAndHashCode.java @@ -148,7 +148,7 @@ public @interface EqualsAndHashCode { NEVER, /** * Cache the result of the first invocation of {@code hashCode} and use it for subsequent invocations. - * This can improve performance in if all fields used for calculating the {@code hashCode} are immutable + * This can improve performance if all fields used for calculating the {@code hashCode} are immutable * and thus every invocation of {@code hashCode} will always return the same value. * <strong>Do not use this if there's <em>any</em> chance that different invocations of {@code hashCode} * might return different values.</strong> |