Check null before close connection

revert-70aa11f8
manoj 9 years ago
parent 3dcb42ee64
commit f68c7133cf

@ -94,6 +94,7 @@ public class OperationManagementDAOFactory {
public static void closeConnection() throws OperationManagementDAOException {
Connection con = currentConnection.get();
if (con != null) {
try {
con.close();
} catch (SQLException e) {
@ -101,6 +102,7 @@ public class OperationManagementDAOFactory {
}
currentConnection.remove();
}
}
public static void commitTransaction() throws OperationManagementDAOException {
try {

Loading…
Cancel
Save