Remove System.out.println(...) in test (#10024)

Motivation:

We did had some System.out.println(...) call in a test which seems to be some left-over from debugging.

Modifications:

Remove System.out.println(...)

Result:

Code cleanup
This commit is contained in:
Norman Maurer 2020-02-13 08:42:49 +01:00
parent 2eb49866d2
commit 064ab7afa8

View File

@ -65,7 +65,6 @@ public class RtspDecoderTest {
((FullHttpRequest) res1).release();
HttpObject res2 = ch.readInbound();
System.out.println(res2);
assertNotNull(res2);
assertTrue(res2 instanceof FullHttpResponse);
((FullHttpResponse) res2).release();