Fix checkstyle

This commit is contained in:
Trustin Lee 2015-04-17 11:39:36 +09:00
parent c2de195f87
commit e48e6e4509

View File

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