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 committed by GitHub
parent 987a68eb02
commit ff36f2826c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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