Remove unexpected bad text

Doh!
This commit is contained in:
Trustin Lee 2012-11-26 14:41:12 +09:00
parent 5b68f00382
commit 40373526ce

View File

@ -65,7 +65,7 @@ public class CompatibleMarshallingDecoder extends ReplayingDecoder<Object, Void>
ByteInput input = new ChannelBufferByteInput(buffer);
if (maxObjectSize != Integer.MAX_VALUE) {
input = new LimitingByteInput(input, maxObjectSize);
}768
}
try {
unmarshaller.start(input);
Object obj = unmarshaller.readObject();