[DS-527] - Withdrawn items not shown as deleted in OAI

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@4888 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Kim Shepherd
2010-05-05 19:02:39 +00:00
parent c853bee89d
commit 3aa176ac1e
2 changed files with 5 additions and 1 deletions

View File

@@ -289,7 +289,7 @@ public class Harvest
itemInfo.item = Item.find(context, itemInfo.itemID);
}
if ((nonAnon) || (itemInfo.item == null))
if ((nonAnon) || (itemInfo.item == null) || (withdrawn && itemInfo.withdrawn))
{
infoObjects.add(itemInfo);
itemCounter++;