You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by gm...@apache.org on 2007/10/27 13:53:54 UTC

svn commit: r589082 - /incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java

Author: gmazza
Date: Sat Oct 27 04:53:54 2007
New Revision: 589082

URL: http://svn.apache.org/viewvc?rev=589082&view=rev
Log:
Fixed checkstyle errors.

Modified:
    incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java

Modified: incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java?rev=589082&r1=589081&r2=589082&view=diff
==============================================================================
--- incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java (original)
+++ incubator/cxf/trunk/distribution/src/main/release/samples/mtom/src/demo/mtom/client/Client.java Sat Oct 27 04:53:54 2007
@@ -67,7 +67,7 @@
 
         TestMtomService tms = new TestMtomService(wsdlURL, SERVICE_NAME);
         TestMtomPortType port = (TestMtomPortType) tms.getPort(PORT_NAME, 
-        TestMtomPortType.class);
+            TestMtomPortType.class);
         Binding binding = ((BindingProvider)port).getBinding();
         ((SOAPBinding)binding).setMTOMEnabled(true);
 
@@ -95,8 +95,8 @@
         System.out.println("--Returned string value is " + name.value);
 
         Image image = ImageIO.read(new ByteArrayInputStream(param.value));
-        System.out.println("--Loaded image from byte[] successfully, hashCode=" + 
-            image.hashCode());
+        System.out.println("--Loaded image from byte[] successfully, hashCode=" 
+            + image.hashCode());
         System.out.println("Successfully ran MTOM/byte array demo");
 
         System.out.println("\nStarting MTOM test with DataHandler:");        
@@ -117,8 +117,8 @@
             fileSize++;
         }
 
-        System.out.println("--Received DataHandler back from server, " +
-            "returned size is " + fileSize);
+        System.out.println("--Received DataHandler back from server, " 
+            + "returned size is " + fileSize);
         System.out.println("--Returned string value is " + name.value);
         
         System.out.println("Successfully ran MTOM/DataHandler demo");