You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by ay...@apache.org on 2011/10/26 18:47:20 UTC

svn commit: r1189305 - in /cxf/branches/2.4.x-fixes: ./ rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java

Author: ay
Date: Wed Oct 26 16:47:20 2011
New Revision: 1189305

URL: http://svn.apache.org/viewvc?rev=1189305&view=rev
Log:
Merged revisions 1189301 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1189301 | ay | 2011-10-26 18:35:48 +0200 (Wed, 26 Oct 2011) | 1 line
  
  [CXF-3853] changed RMTxStore.isTableExistsError to protected
........

Modified:
    cxf/branches/2.4.x-fixes/   (props changed)
    cxf/branches/2.4.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
    svn:mergeinfo = /cxf/trunk:1189301

Propchange: cxf/branches/2.4.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.4.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java?rev=1189305&r1=1189304&r2=1189305&view=diff
==============================================================================
--- cxf/branches/2.4.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java (original)
+++ cxf/branches/2.4.x-fixes/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/persistence/jdbc/RMTxStore.java Wed Oct 26 16:47:20 2011
@@ -741,7 +741,7 @@ public class RMTxStore implements RMStor
         }
     }
 
-    private static boolean isTableExistsError(SQLException ex) {
+    protected boolean isTableExistsError(SQLException ex) {
         return DERBY_TABLE_EXISTS_STATE.equals(ex.getSQLState())
                 || ORACLE_TABLE_EXISTS_CODE == ex.getErrorCode();
     }