[DS-707] Cleanup Map / List interface use

git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5505 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Graham Triggs
2010-10-20 22:57:14 +00:00
parent 5f57216279
commit 59056cb8c2
18 changed files with 80 additions and 70 deletions

View File

@@ -45,6 +45,7 @@ import java.sql.SQLException;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.log4j.Logger;
import org.dspace.authorize.AuthorizeException;
@@ -87,10 +88,10 @@ public class MetadataSchema
private String name;
// cache of schema by ID (Integer)
private static HashMap id2schema = null;
private static Map id2schema = null;
// cache of schema by short name
private static HashMap name2schema = null;
private static Map name2schema = null;
/**