From 40373526ce096a7eafc409e3f39668afa11fb873 Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Mon, 26 Nov 2012 14:41:12 +0900 Subject: [PATCH] Remove unexpected bad text Doh! --- .../handler/codec/marshalling/CompatibleMarshallingDecoder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec/src/main/java/io/netty/handler/codec/marshalling/CompatibleMarshallingDecoder.java b/codec/src/main/java/io/netty/handler/codec/marshalling/CompatibleMarshallingDecoder.java index 1801499ae3..217613a066 100644 --- a/codec/src/main/java/io/netty/handler/codec/marshalling/CompatibleMarshallingDecoder.java +++ b/codec/src/main/java/io/netty/handler/codec/marshalling/CompatibleMarshallingDecoder.java @@ -65,7 +65,7 @@ public class CompatibleMarshallingDecoder extends ReplayingDecoder ByteInput input = new ChannelBufferByteInput(buffer); if (maxObjectSize != Integer.MAX_VALUE) { input = new LimitingByteInput(input, maxObjectSize); - }768 + } try { unmarshaller.start(input); Object obj = unmarshaller.readObject();