OPENJPA-676 remove extra bracket

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@683304 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Dick 2008-08-06 15:45:08 +00:00
parent 62a6555c89
commit b53a58f948
1 changed files with 6 additions and 7 deletions

View File

@ -184,13 +184,12 @@ public abstract class AbstractJDBCSeq
// The seq is part of the business transaction however we need
// to decrement the ref count so that the connection may be
// closed appropriately.
try {
conn.close();
}
catch(SQLException se) {
throw SQLExceptions.getStore(se);
}
}
try {
conn.close();
}
catch(SQLException se) {
throw SQLExceptions.getStore(se);
}
return;
}
else {