From ff36f2826c4ebf854cde94bb9805f6c2f1791f64 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Wed, 29 Apr 2020 11:35:22 +0200 Subject: [PATCH] Remove some debugging cruft (#10229) Motivation: RtspDecoderTest did include a println(...) call which was a left over from debugging. Modifications: Remove println(...) Result: Cleanup --- .../test/java/io/netty/handler/codec/rtsp/RtspDecoderTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/codec-http/src/test/java/io/netty/handler/codec/rtsp/RtspDecoderTest.java b/codec-http/src/test/java/io/netty/handler/codec/rtsp/RtspDecoderTest.java index 631ba2af8e..3bb02f3bf3 100644 --- a/codec-http/src/test/java/io/netty/handler/codec/rtsp/RtspDecoderTest.java +++ b/codec-http/src/test/java/io/netty/handler/codec/rtsp/RtspDecoderTest.java @@ -59,7 +59,6 @@ public class RtspDecoderTest { Unpooled.wrappedBuffer(data2)); HttpObject res1 = ch.readInbound(); - System.out.println(res1); assertNotNull(res1); assertTrue(res1 instanceof FullHttpRequest); ((FullHttpRequest) res1).release();