mirror of https://github.com/apache/openjpa.git
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:
parent
62a6555c89
commit
b53a58f948
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue