aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorAndre Brait <andrebrait@gmail.com>2020-07-14 10:01:39 +0200
committerRoel Spilker <r.spilker@gmail.com>2020-09-24 22:25:15 +0200
commit04a10be919ffe89142d173cf384f23c9b9b39f73 (patch)
treeb74b6b8ba18c9907b507f10124a56e1f3ad68141 /src/core
parentb62ce8fb2fe5348e37da4025b7550f21876f6e28 (diff)
downloadlombok-04a10be919ffe89142d173cf384f23c9b9b39f73.tar.gz
lombok-04a10be919ffe89142d173cf384f23c9b9b39f73.tar.bz2
lombok-04a10be919ffe89142d173cf384f23c9b9b39f73.zip
Change documentation to reflect code
Diffstat (limited to 'src/core')
-rwxr-xr-xsrc/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java
index b1fc2bb2..93bc92de 100755
--- a/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java
+++ b/src/core/lombok/eclipse/handlers/HandleEqualsAndHashCode.java
@@ -296,7 +296,7 @@ public class HandleEqualsAndHashCode extends EclipseAnnotationHandler<EqualsAndH
}
}
- /* if ($hashCodeCache != 0) return $hashCodeCache; */ {
+ /* if (this.$hashCodeCache != 0) return this.$hashCodeCache; */ {
if (cacheHashCode) {
FieldReference hashCodeCacheRef = new FieldReference(HASH_CODE_CACHE_NAME_ARR, p);
hashCodeCacheRef.receiver = new ThisReference(pS, pE);
@@ -441,7 +441,7 @@ public class HandleEqualsAndHashCode extends EclipseAnnotationHandler<EqualsAndH
}
}
- /* $hashCodeCache = result; */ {
+ /* this.$hashCodeCache = result; */ {
if (cacheHashCode) {
FieldReference hashCodeCacheRef = new FieldReference(HASH_CODE_CACHE_NAME_ARR, p);
hashCodeCacheRef.receiver = new ThisReference(pS, pE);