Removes a pointless operation ( +0 )
I mean, seriously, this does nothing. At all. :) Signed-off-by: Cruz Julian Bishop <cruzjbishop@gmail.com>
This commit is contained in:
parent
e685ce36fc
commit
2f88b9167c
@ -107,7 +107,7 @@ public final class ChannelBuffers {
|
||||
static {
|
||||
final char[] DIGITS = "0123456789abcdef".toCharArray();
|
||||
for (int i = 0; i < 256; i ++) {
|
||||
HEXDUMP_TABLE[(i << 1) + 0] = DIGITS[i >>> 4 & 0x0F];
|
||||
HEXDUMP_TABLE[i << 1] = DIGITS[i >>> 4 & 0x0F];
|
||||
HEXDUMP_TABLE[(i << 1) + 1] = DIGITS[i & 0x0F];
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user