Repository: cxf
Updated Branches:
  refs/heads/master 18720623e -> 7fa9a0a0a


[CXF-6889] Removing the commented code


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

Branch: refs/heads/master
Commit: 7fa9a0a0acf9b395590a2bd03853cc55dc79036d
Parents: 1872062
Author: Sergey Beryozkin <sberyoz...@gmail.com>
Authored: Mon Jul 10 16:29:39 2017 +0100
Committer: Sergey Beryozkin <sberyoz...@gmail.com>
Committed: Mon Jul 10 16:29:39 2017 +0100

----------------------------------------------------------------------
 .../apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java   | 5 -----
 1 file changed, 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/7fa9a0a0/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java
----------------------------------------------------------------------
diff --git 
a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java
 
b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java
index 381966c..d9aaf6d 100644
--- 
a/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java
+++ 
b/rt/rs/client/src/main/java/org/apache/cxf/jaxrs/client/CompletionStageRxInvokerImpl.java
@@ -148,8 +148,6 @@ public class CompletionStageRxInvokerImpl implements 
CompletionStageRxInvoker {
         } else {
             return CompletableFuture.supplyAsync(() -> wc.sync().method(name, 
entity, responseType), ex);
         }
-        
-        //return wc.doInvokeAsyncStage(name, entity, responseType, 
responseType, ex);
     }
 
     @Override
@@ -159,7 +157,6 @@ public class CompletionStageRxInvokerImpl implements 
CompletionStageRxInvoker {
         } else {
             return CompletableFuture.supplyAsync(() -> wc.sync().method(name, 
entity, responseType), ex);
         }
-        //return wc.doInvokeAsyncStage(name, entity, 
responseType.getRawType(), responseType.getType(), ex);
     }
 
     @Override
@@ -169,7 +166,6 @@ public class CompletionStageRxInvokerImpl implements 
CompletionStageRxInvoker {
         } else {
             return CompletableFuture.supplyAsync(() -> wc.sync().method(name, 
responseType), ex);
         }
-        //return wc.doInvokeAsyncStage(name, null, responseType, responseType, 
ex);
     }
 
     @Override
@@ -179,7 +175,6 @@ public class CompletionStageRxInvokerImpl implements 
CompletionStageRxInvoker {
         } else {
             return CompletableFuture.supplyAsync(() -> wc.sync().method(name, 
responseType), ex);
         }
-        //return wc.doInvokeAsyncStage(name, null, responseType.getRawType(), 
responseType.getType(), ex);
     }
 
 }

Reply via email to