DS-3080 Counting withdrawn items (bugfix)

This commit is contained in:
Mateusz Neumann
2016-02-25 16:25:39 +01:00
parent 542a51d3c7
commit ba10d40385

View File

@@ -1172,7 +1172,7 @@ public class ItemServiceImpl extends DSpaceObjectServiceImpl<Item> implements It
@Override @Override
public int countWithdrawnItems(Context context) throws SQLException { public int countWithdrawnItems(Context context) throws SQLException {
// return count of items that are in archive and withdrawn // return count of items that are not in archive and withdrawn
return itemDAO.countItems(context, false, true); return itemDAO.countItems(context, false, true);
} }
} }