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:
Stuart Lewis
2010-02-04 22:46:57 +00:00
parent aa464807aa
commit fd0364dae0

View File

@@ -188,7 +188,7 @@ public class MetadataImport
ArrayList<String> collections = line.get("collection");
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
@@ -210,7 +210,7 @@ public class MetadataImport
// Check for duplicate
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
{