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 2011/10/20 17:53:00 UTC

svn commit: r1186867 - /cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java

Author: dkulp
Date: Thu Oct 20 15:53:00 2011
New Revision: 1186867

URL: http://svn.apache.org/viewvc?rev=1186867&view=rev
Log:
Maven already sets the logging.properties.  No need to do it in code.

Modified:
    cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java

Modified: cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java?rev=1186867&r1=1186866&r2=1186867&view=diff
==============================================================================
--- cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java (original)
+++ cxf/trunk/services/wsn/wsn-core/src/test/java/org/apache/cxf/wsn/WsnBrokerTest.java Thu Oct 20 15:53:00 2011
@@ -72,10 +72,6 @@ public abstract class WsnBrokerTest exte
         port1 = getFreePort();
         port2 = getFreePort();
 
-        System.setProperty("java.util.logging.config.file", 
-                           getClass().getClassLoader().getResource("logging.properties").getPath());
-        java.util.logging.LogManager.getLogManager().readConfiguration();
-
         activemq = new ActiveMQConnectionFactory("vm:(broker:(tcp://localhost:6000)?persistent=false)");
 
         notificationBrokerServer = new JaxwsNotificationBroker("WSNotificationBroker", activemq);