removed useless parens

Former-commit-id: 00ddea8b437494cc32e47e3066a448015d95467b
This commit is contained in:
Jeremy Long
2014-08-05 09:24:48 -04:00
parent dc5566b5ae
commit 9925e30c8b

View File

@@ -129,7 +129,7 @@ public final class Checksum {
}
final StringBuilder hex = new StringBuilder(2 * raw.length);
for (final byte b : raw) {
hex.append(HEXES.charAt((b & 0xF0) >> 4)).append(HEXES.charAt((b & 0x0F)));
hex.append(HEXES.charAt((b & 0xF0) >> 4)).append(HEXES.charAt(b & 0x0F));
}
return hex.toString();
}