Author: ningjiang Date: Wed Feb 9 10:00:48 2011 New Revision: 1068823 URL: http://svn.apache.org/viewvc?rev=1068823&view=rev Log: removed the System.out.println of CxfPayloadConverterTest
Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/converter/CxfPayloadConverterTest.java Modified: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/converter/CxfPayloadConverterTest.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/converter/CxfPayloadConverterTest.java?rev=1068823&r1=1068822&r2=1068823&view=diff ============================================================================== --- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/converter/CxfPayloadConverterTest.java (original) +++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/converter/CxfPayloadConverterTest.java Wed Feb 9 10:00:48 2011 @@ -73,7 +73,6 @@ public class CxfPayloadConverterTest ext public void testCxfPayloadToNodeList() { NodeList nodeList = CxfPayloadConverter.cxfPayloadToNodeList(payload, exchange); assertNotNull(nodeList); - System.out.println("The node list is " + nodeList.getLength()); assertEquals("Get a worng size of nodeList", 1, nodeList.getLength()); }