[jboss-svn-commits] JBL Code SVN: r38030 - labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/qa/tests/src/org/jboss/jbossts/qa/CrashRecovery13Impls.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Apr 18 02:29:26 EDT 2012
Author: tomjenkinson
Date: 2012-04-18 02:29:25 -0400 (Wed, 18 Apr 2012)
New Revision: 38030
Modified:
labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/qa/tests/src/org/jboss/jbossts/qa/CrashRecovery13Impls/ExampleXAConnection.java
Log:
JBTM-1120 added in some required PooledConnection methods, it should be noted the class affected does not have any links into it so should be considered deprecated
Modified: labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/qa/tests/src/org/jboss/jbossts/qa/CrashRecovery13Impls/ExampleXAConnection.java
===================================================================
--- labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/qa/tests/src/org/jboss/jbossts/qa/CrashRecovery13Impls/ExampleXAConnection.java 2012-04-18 05:27:09 UTC (rev 38029)
+++ labs/jbosstm/branches/JBOSSTS_4_6_1_GA_CP/qa/tests/src/org/jboss/jbossts/qa/CrashRecovery13Impls/ExampleXAConnection.java 2012-04-18 06:29:25 UTC (rev 38030)
@@ -32,6 +32,7 @@
package org.jboss.jbossts.qa.CrashRecovery13Impls;
import javax.sql.ConnectionEventListener;
+import javax.sql.StatementEventListener;
import javax.sql.XAConnection;
import javax.transaction.xa.XAResource;
import java.sql.Connection;
@@ -61,5 +62,12 @@
{
}
+ public void addStatementEventListener(StatementEventListener l)
+ {
+ }
+
+ public void removeStatementEventListener(StatementEventListener l)
+ {
+ }
}
More information about the jboss-svn-commits
mailing list