mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 18:11:47 +01:00
removed useless parens
Former-commit-id: 00ddea8b437494cc32e47e3066a448015d95467b
This commit is contained in:
@@ -129,7 +129,7 @@ public final class Checksum {
|
|||||||
}
|
}
|
||||||
final StringBuilder hex = new StringBuilder(2 * raw.length);
|
final StringBuilder hex = new StringBuilder(2 * raw.length);
|
||||||
for (final byte b : raw) {
|
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();
|
return hex.toString();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user