Remove useless System.out.println

This commit is contained in:
Stephane Nicoll
2014-11-21 17:39:42 +01:00
parent 7b4de0921f
commit 2b19955cee

View File

@@ -49,7 +49,6 @@ public class JsonMarshallerTests {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
JsonMarshaller marshaller = new JsonMarshaller();
marshaller.write(metadata, outputStream);
System.out.println(outputStream);
ConfigurationMetadata read = marshaller.read(new ByteArrayInputStream(
outputStream.toByteArray()));
assertThat(read,