HBASE-18447 MetricRegistryInfo#hashCode uses hashCode instead of toHashCode

Signed-off-by: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
Peter Somogyi 2017-07-25 13:15:48 +02:00 committed by Sean Busbey
parent bcdc56ac76
commit cd7d5bd752
1 changed files with 1 additions and 1 deletions

View File

@ -107,6 +107,6 @@ public class MetricRegistryInfo {
.append(metricsDescription)
.append(metricsContext)
.append(metricsJmxContext)
.hashCode();
.toHashCode();
}
}