Fixed a bug where getBoolean wasn't used

revert-70aa11f8
Dulitha Wijewantha 8 years ago
parent ca8859c80a
commit 03f323d6e2

@ -99,7 +99,7 @@ public class CommandOperationDAOImpl extends GenericOperationDAOImpl {
if (rs.next()) {
commandOperation = new CommandOperation();
commandOperation.setEnabled(rs.getInt("ENABLED") != 0);
commandOperation.setEnabled(rs.getBoolean("ENABLED"));
}
} catch (SQLException e) {
throw new OperationManagementDAOException("SQL Error occurred while retrieving the command operation " +

Loading…
Cancel
Save