Author: seanoc
Date: Tue Aug 5 03:09:45 2008
New Revision: 682661
URL: http://svn.apache.org/viewvc?rev=682661&view=rev
Log:
Fixing checkstyle errors.
Modified:
cxf/trunk/distribution/src/main/release/samples/ws_rm/src/demo/ws_rm/server/Server.java
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/client/Client.java
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/server/Server.java
Modified:
cxf/trunk/distribution/src/main/release/samples/ws_rm/src/demo/ws_rm/server/Server.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/ws_rm/src/demo/ws_rm/server/Server.java?rev=682661&r1=682660&r2=682661&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/ws_rm/src/demo/ws_rm/server/Server.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/ws_rm/src/demo/ws_rm/server/Server.java
Tue Aug 5 03:09:45 2008
@@ -19,8 +19,9 @@
package demo.ws_rm.server;
-import javax.xml.ws.Endpoint;
import java.net.URL;
+import javax.xml.ws.Endpoint;
+
import org.apache.cxf.Bus;
import org.apache.cxf.bus.spring.SpringBusFactory;
Modified:
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/client/Client.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/client/Client.java?rev=682661&r1=682660&r2=682661&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/client/Client.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/client/Client.java
Tue Aug 5 03:09:45 2008
@@ -61,9 +61,9 @@
} else if ("insecure".equals(args[1])) {
busFile = Client.class.getResource("InsecureClient.xml");
} else {
- System.out.println("arg1 needs to be either secure or
insecure");
- System.exit(1);
- }
+ System.out.println("arg1 needs to be either secure or insecure");
+ System.exit(1);
+ }
Bus bus = bf.createBus(busFile.toString());
bf.setDefaultBus(bus);
Modified:
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/server/Server.java
URL:
http://svn.apache.org/viewvc/cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/server/Server.java?rev=682661&r1=682660&r2=682661&view=diff
==============================================================================
---
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/server/Server.java
(original)
+++
cxf/trunk/distribution/src/main/release/samples/wsdl_first_https/src/demo/hw_https/server/Server.java
Tue Aug 5 03:09:45 2008
@@ -19,8 +19,9 @@
package demo.hw_https.server;
-import javax.xml.ws.Endpoint;
import java.net.URL;
+import javax.xml.ws.Endpoint;
+
import org.apache.cxf.Bus;
import org.apache.cxf.bus.spring.SpringBusFactory;