fixed tab problems

This commit is contained in:
Alex Huang 2012-10-25 13:13:47 -07:00
parent 7b7f4cd1fd
commit 525f96b7ae

View File

@ -130,7 +130,7 @@ public class Transaction {
// the existing DAO features
//
public void transitToUserManagedConnection(Connection conn) {
assert(_conn == null /*&& _stack.size() <= 1*/) : "Can't change to a user managed connection unless the stack is empty and the db connection is null, you may have forgotten to invoke transitToAutoManagedConnection to close out the DB connection: " + toString();
assert(_conn == null /*&& _stack.size() <= 1*/) : "Can't change to a user managed connection unless the stack is empty and the db connection is null, you may have forgotten to invoke transitToAutoManagedConnection to close out the DB connection: " + toString();
_conn = conn;
_dbId = CONNECTED_DB;
}
@ -747,8 +747,8 @@ public class Transaction {
}
try {
// we should only close db connection when it is not user managed
if(this._dbId != CONNECTED_DB) {
// we should only close db connection when it is not user managed
if (this._dbId != CONNECTED_DB) {
if (s_connLogger.isTraceEnabled()) {
s_connLogger.trace("Closing DB connection: dbconn" + System.identityHashCode(_conn));
}