typo fix ! Sorry

This commit is contained in:
Frédéric Brégier 2012-05-02 12:33:40 +03:00 committed by Trustin Lee
parent a91e72403c
commit a73e6ea581

View File

@ -851,7 +851,7 @@ public class HttpPostRequestDecoder {
}
while (sao.pos < sao.limit) {
char c = (char) ()sao.bytes[sao.pos ++] & 0xFF);
char c = (char) (sao.bytes[sao.pos ++] & 0xFF);
if (!Character.isISOControl(c) && !Character.isWhitespace(c)) {
sao.setReadPosition(1);
return;