Fix checkstyle and broken method call. Part of #569 and #572

This commit is contained in:
Norman Maurer 2012-08-28 18:19:31 +02:00
parent 0522c4ffc4
commit 6bd6be0b09
2 changed files with 1 additions and 6 deletions

View File

@ -130,15 +130,10 @@ final class HttpPostBodyUtil {
*/
static class SeekAheadOptimize {
byte[] bytes;
int readerIndex;
int pos;
int origPos;
int limit;
ChannelBuffer buffer;
/**

View File

@ -857,7 +857,7 @@ public class HttpPostRequestDecoder {
sao = new SeekAheadOptimize(undecodedChunk);
} catch (SeekAheadNoBackArrayException e) {
try {
skipControlCharactersStandard(undecodedChunk);
skipControlCharactersStandard();
} catch (IndexOutOfBoundsException e1) {
throw new NotEnoughDataDecoderException(e1);
}