mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-16 06:23:10 +00:00
Correct typos in error messages
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@4740 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -188,7 +188,7 @@ public class MetadataImport
|
|||||||
ArrayList<String> collections = line.get("collection");
|
ArrayList<String> collections = line.get("collection");
|
||||||
if (collections == null)
|
if (collections == null)
|
||||||
{
|
{
|
||||||
throw new MetadataImportException("New items must have a 'collection' assiged in the form of a handle");
|
throw new MetadataImportException("New items must have a 'collection' assigned in the form of a handle");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check collections are really collections
|
// Check collections are really collections
|
||||||
@@ -210,7 +210,7 @@ public class MetadataImport
|
|||||||
// Check for duplicate
|
// Check for duplicate
|
||||||
if (check.contains(collection))
|
if (check.contains(collection))
|
||||||
{
|
{
|
||||||
throw new MetadataImportException("Duplicate collection assignement detected in new item! " + handle);
|
throw new MetadataImportException("Duplicate collection assignment detected in new item! " + handle);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user