summaryrefslogtreecommitdiffstats
path: root/scripting/java/org/openoffice
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 /scripting/java/org/openoffice
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 'scripting/java/org/openoffice')
-rw-r--r--scripting/java/org/openoffice/idesupport/CommandLineTools.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripting/java/org/openoffice/idesupport/CommandLineTools.java b/scripting/java/org/openoffice/idesupport/CommandLineTools.java
index 73e81755679a..5cb8d5f51b55 100644
--- a/scripting/java/org/openoffice/idesupport/CommandLineTools.java
+++ b/scripting/java/org/openoffice/idesupport/CommandLineTools.java
@@ -181,7 +181,7 @@ public class CommandLineTools {
private String language = null;
private MethodFinder finder = null;
private ArrayList scripts = null;
- private Hashtable properties = new Hashtable(3);
+ private HashMap properties = new HashMap(3);
public GenerateCommand(String basedir) {
this.basedir = new File(basedir);