Skip to content

Commit

Permalink
perf
Browse files Browse the repository at this point in the history
  • Loading branch information
purplefox committed Apr 25, 2012
1 parent eabb700 commit 44c5d61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected Object decode(ChannelHandlerContext ctx, Channel channel, ChannelBuffe
long length = (lengthMask & 0x7F);

if (length == 126) {
length = buffer.readShort();
length = buffer.readUnsignedShort();
} else if (length == 127) {
length = buffer.readLong();
}
Expand Down

0 comments on commit 44c5d61

Please sign in to comment.