Skip to content

Commit 1a10d21

Browse files
committed
Revert adding final local var
1 parent 177fed3 commit 1a10d21

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/net/openhft/hashing/CityAndFarmHash_1_1.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ static <T> long cityHash64(Access<T> access, T in, long off, long len) {
117117
return cityHashLen33To64(access, in, off, len);
118118
}
119119

120-
final long x = access.i64(in, off + len - 40L);
121-
final long y = access.i64(in, off + len - 16L) + access.i64(in, off + len - 56L);
122-
final long z = hashLen16(access.i64(in, off + len - 48L) + len,
120+
long x = access.i64(in, off + len - 40L);
121+
long y = access.i64(in, off + len - 16L) + access.i64(in, off + len - 56L);
122+
long z = hashLen16(access.i64(in, off + len - 48L) + len,
123123
access.i64(in, off + len - 24L));
124124

125125
long vFirst;

0 commit comments

Comments
 (0)