mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 07:23:08 +00:00
Fix enum name to match title/logic
This commit is contained in:
@@ -26,12 +26,12 @@ public class ItemFilterDefs implements ItemFilterList {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
is_not_withdrawn("Withdrawn Items", null, CAT_ITEM) {
|
is_withdrawn("Withdrawn Items", null, CAT_ITEM) {
|
||||||
public boolean testItem(Context context, Item item) {
|
public boolean testItem(Context context, Item item) {
|
||||||
return item.isWithdrawn();
|
return item.isWithdrawn();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
is_withdrawn("Available Items - Not Withdrawn", null, CAT_ITEM) {
|
is_not_withdrawn("Available Items - Not Withdrawn", null, CAT_ITEM) {
|
||||||
public boolean testItem(Context context, Item item) {
|
public boolean testItem(Context context, Item item) {
|
||||||
return !item.isWithdrawn();
|
return !item.isWithdrawn();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user