You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2014/10/31 16:00:49 UTC

git commit: Fix checkstyle issues

Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes dc7873b1c -> 16f7e32ba


Fix checkstyle issues


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/16f7e32b
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/16f7e32b
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/16f7e32b

Branch: refs/heads/3.0.x-fixes
Commit: 16f7e32ba9059bac2898464232f5f58d7730eb7d
Parents: dc7873b
Author: Daniel Kulp <dk...@apache.org>
Authored: Fri Oct 31 11:00:36 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Fri Oct 31 11:00:36 2014 -0400

----------------------------------------------------------------------
 .../src/main/java/demo/jaxrs/server/CustomerService.java        | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/16f7e32b/distribution/src/main/release/samples/jax_rs/websocket/src/main/java/demo/jaxrs/server/CustomerService.java
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/websocket/src/main/java/demo/jaxrs/server/CustomerService.java b/distribution/src/main/release/samples/jax_rs/websocket/src/main/java/demo/jaxrs/server/CustomerService.java
index 2927d24..442124b 100644
--- a/distribution/src/main/release/samples/jax_rs/websocket/src/main/java/demo/jaxrs/server/CustomerService.java
+++ b/distribution/src/main/release/samples/jax_rs/websocket/src/main/java/demo/jaxrs/server/CustomerService.java
@@ -21,10 +21,8 @@ package demo.jaxrs.server;
 import java.io.IOException;
 import java.io.OutputStream;
 import java.util.HashMap;
-import java.util.HashSet;
 import java.util.Iterator;
 import java.util.Map;
-import java.util.Set;
 import java.util.concurrent.ExecutorService;
 import java.util.concurrent.Executors;
 
@@ -126,7 +124,8 @@ public class CustomerService {
     @GET
     @Path("/monitor")
     @Produces("text/*")
-    public StreamingOutput monitorCustomers(@HeaderParam(WebSocketConstants.DEFAULT_REQUEST_ID_KEY) String reqid) {
+    public StreamingOutput monitorCustomers(@HeaderParam(WebSocketConstants.DEFAULT_REQUEST_ID_KEY)
+                                            String reqid) {
         final String key = reqid == null ? "*" : reqid; 
         return new StreamingOutput() {
             public void write(final OutputStream out) throws IOException, WebApplicationException {