Items count are now disabled by default. Naming changes.

This commit is contained in:
damian
2023-06-13 19:58:42 +02:00
parent ff504e35d1
commit ca7c75987e
10 changed files with 18 additions and 15 deletions

View File

@@ -342,9 +342,9 @@ public class Collection extends DSpaceObject implements DSpaceObjectLegacySuppor
*
* @return int
*/
public int countArchivedItem() {
public int countArchivedItems() {
try {
return collectionService.countArchivedItem(this);
return collectionService.countArchivedItems(this);
} catch (ItemCountException e) {
throw new RuntimeException(e);
}