bugfix
This commit is contained in:
parent
a9bdb7dc7d
commit
f41826bce4
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ public class DBConnection{
|
|||
public void forceClose(){
|
||||
if (conn != null) {
|
||||
try {
|
||||
if( conn.isClosed() )
|
||||
if( !conn.isClosed() )
|
||||
conn.close();
|
||||
} catch (SQLException e) {
|
||||
logger.log(Level.WARNING, null, e);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue