mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
[DS-753] Fix CSV parsing that got broken by refactoring
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5866 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
<%@ page import="org.dspace.content.Item" %>
|
||||
<%@ page import="org.dspace.content.DCValue" %>
|
||||
<%@ page import="org.dspace.content.Collection" %>
|
||||
<%@ page import="java.util.List" %>
|
||||
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
||||
|
||||
@@ -71,10 +72,10 @@
|
||||
for (BulkEditChange change : changes)
|
||||
{
|
||||
// Get the changes
|
||||
ArrayList<DCValue> adds = change.getAdds();
|
||||
ArrayList<DCValue> removes = change.getRemoves();
|
||||
ArrayList<Collection> newCollections = change.getNewMappedCollections();
|
||||
ArrayList<Collection> oldCollections = change.getOldMappedCollections();
|
||||
List<DCValue> adds = change.getAdds();
|
||||
List<DCValue> removes = change.getRemoves();
|
||||
List<Collection> newCollections = change.getNewMappedCollections();
|
||||
List<Collection> oldCollections = change.getOldMappedCollections();
|
||||
boolean first = false;
|
||||
if ((adds.size() > 0) || (removes.size() > 0) ||
|
||||
(newCollections.size() > 0) || (oldCollections.size() > 0) ||
|
||||
|
Reference in New Issue
Block a user