Optimize hashcode function

This commit is contained in:
Andrea Cavalli 2021-09-25 01:10:08 +02:00
parent 703e92cc8f
commit a303067976
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ public class Int52 extends Number implements Comparable<Int52> {
@Override
public int hashCode() {
return Objects.hash(value);
return Long.hashCode(value);
}
@Override