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 Chia-Ping Tsai
parent 3be51a85ba
commit fb80a8e886
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();
}
}