Fix checkstyle

This commit is contained in:
Trustin Lee 2015-04-17 11:39:36 +09:00
parent 52e05b3224
commit 7b7cf29eef

View File

@ -400,7 +400,7 @@ public class ByteString {
for (int i = 0; i < value.length; ++i) { for (int i = 0; i < value.length; ++i) {
h = h * HASH_CODE_PRIME ^ value[i] & HASH_CODE_PRIME; h = h * HASH_CODE_PRIME ^ value[i] & HASH_CODE_PRIME;
} }
hash = h; hash = h;
} }
return h; return h;