summaryrefslogtreecommitdiffstats
path: root/config/src/main/java/com/yahoo
diff options
context:
space:
mode:
authorHarald Musum <musum@yahooinc.com>2021-10-13 07:31:29 +0200
committerHarald Musum <musum@yahooinc.com>2021-10-13 07:31:29 +0200
commit77bda8e21e3b4cd04eb68cd68590ce02176f253b (patch)
treee0a7a9e66fcc81db14e9f24b9c3848e8bc47b2d5 /config/src/main/java/com/yahoo
parenta5e37d9dfada0dbc346857b09be18779d2652adf (diff)
Cleanup, no functional changes
Diffstat (limited to 'config/src/main/java/com/yahoo')
-rwxr-xr-xconfig/src/main/java/com/yahoo/vespa/config/RawConfig.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/src/main/java/com/yahoo/vespa/config/RawConfig.java b/config/src/main/java/com/yahoo/vespa/config/RawConfig.java
index 71abaa9dc48..e2b2c9a1926 100755
--- a/config/src/main/java/com/yahoo/vespa/config/RawConfig.java
+++ b/config/src/main/java/com/yahoo/vespa/config/RawConfig.java
@@ -194,7 +194,7 @@ public class RawConfig extends ConfigInstance {
}
hash = 31 * hash + errorCode;
if (! isError()) {
- // configMd5 and generation only matter when the RawConfig is not an error.
+ // checksum and generation only matter when the RawConfig is not an error.
hash = 31 * hash + (int)(generation ^(generation >>>32));
hash = 31 * hash + payloadChecksums.hashCode();
}