Remove some debugging cruft (#10229)

Motivation:

RtspDecoderTest did include a println(...) call which was a left over from debugging.

Modifications:

Remove println(...)

Result:

Cleanup
This commit is contained in:
Norman Maurer 2020-04-29 11:35:22 +02:00
parent 65a967c772
commit 23e0b878af

View File

@ -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();