You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2011/08/03 17:05:59 UTC

svn commit: r1153530 - /cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java

Author: sergeyb
Date: Wed Aug  3 15:05:58 2011
New Revision: 1153530

URL: http://svn.apache.org/viewvc?rev=1153530&view=rev
Log:
Removing println

Modified:
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java?rev=1153530&r1=1153529&r2=1153530&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/failover/LoadDistributorTest.java Wed Aug  3 15:05:58 2011
@@ -131,7 +131,6 @@ public class LoadDistributorTest extends
             assertEquals("unexpected id", 123L, book.getId());
             
             String address = getCurrentEndpointAddress(bookStore);
-            System.out.println(address);
             if (Server.ADDRESS2.equals(address)) {
                 address2Count++;
             } else if (Server.ADDRESS3.equals(address)) {
@@ -147,7 +146,7 @@ public class LoadDistributorTest extends
             .getEndpoint().getEndpointInfo().getAddress();
     }
     
-    protected void verifyStrategy(Object proxy, Class clz) {
+    protected void verifyStrategy(Object proxy, Class<?> clz) {
         ConduitSelector conduitSelector =
             WebClient.getConfig(proxy).getConduitSelector();
         if (conduitSelector instanceof FailoverTargetSelector) {