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 2012/05/01 18:09:18 UTC

svn commit: r1332722 - /cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java

Author: dkulp
Date: Tue May  1 16:09:18 2012
New Revision: 1332722

URL: http://svn.apache.org/viewvc?rev=1332722&view=rev
Log:
Merged revisions 1332267 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1332267 | dkulp | 2012-04-30 11:58:13 -0400 (Mon, 30 Apr 2012) | 2 lines

  Fix compile issue with Java7

........

Modified:
    cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java

Modified: cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java?rev=1332722&r1=1332721&r2=1332722&view=diff
==============================================================================
--- cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java (original)
+++ cxf/branches/2.5.x-fixes/rt/ws/rm/src/test/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStoreConfigurationTest.java Tue May  1 16:09:18 2012
@@ -22,6 +22,8 @@ package org.apache.cxf.ws.rm.persistence
 import java.io.PrintWriter;
 import java.sql.Connection;
 import java.sql.SQLException;
+import java.sql.SQLFeatureNotSupportedException;
+import java.util.logging.Logger;
 
 import javax.sql.DataSource;
 
@@ -111,5 +113,9 @@ public class RMTxStoreConfigurationTest 
             // avoid creating a connection and tables at RMTxStore.init()
             throw new SQLException("test");
         }
+
+        public Logger getParentLogger() throws SQLFeatureNotSupportedException {
+            return null;
+        }
     }
 }