407408409410411412413414
protected ByteCountingInputStream createByteCountingInputStream(InputStream is) { if (maxPostBodyLength == 0) { return new ByteCountingInputStream(is); } else { return new LimitedByteCountingInputStream(is, maxPostBodyLength); } }
410411412413414415416417