summaryrefslogtreecommitdiffstats
path: root/qadevOOo/runner/util
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-05-03 15:03:19 +0200
committerNoel Grandin <noel@peralex.com>2013-05-06 11:45:53 +0200
commit8be40d31d78723debd47f671544f480c1c606db7 (patch)
tree0051888bb41793e4d65704a93a4cfc659119c8bc /qadevOOo/runner/util
parentJava cleanup, convert more Vector to ArrayList (diff)
downloadcore-8be40d31d78723debd47f671544f480c1c606db7.tar.gz
core-8be40d31d78723debd47f671544f480c1c606db7.zip
Java cleanup, convert Hashtable to HashMap
Change-Id: If8a9c0c3a4b357fb9c0ff096f44ed1b44ebbcef4
Diffstat (limited to 'qadevOOo/runner/util')
-rw-r--r--qadevOOo/runner/util/XMLTools.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/runner/util/XMLTools.java b/qadevOOo/runner/util/XMLTools.java
index cd73daf47304..b658aa58f185 100644
--- a/qadevOOo/runner/util/XMLTools.java
+++ b/qadevOOo/runner/util/XMLTools.java
@@ -22,7 +22,6 @@ import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
-import java.util.Hashtable;
import java.util.Iterator;
import com.sun.star.beans.PropertyValue;
@@ -58,7 +57,7 @@ public class XMLTools {
public String Type ;
public String Value ;
}
- private Hashtable<String, Attribute> attrByName = new Hashtable<String, Attribute>() ;
+ private HashMap<String, Attribute> attrByName = new HashMap<String, Attribute>() ;
private ArrayList<Attribute> attributes = new ArrayList<Attribute>() ;
private PrintWriter log = null ;