summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib/TestParameters.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-06-27 15:20:39 +0200
committerMichael Stahl <mstahl@redhat.com>2012-06-29 22:03:00 +0200
commit33ec740d1438c3dddf8e1974757ed05bb76425ca (patch)
tree37868edd825fe8f3777a077549e61f1379da7cd3 /qadevOOo/runner/lib/TestParameters.java
parent10dd7e74c551f3e252405ba0f80a2f143d9129e5 (diff)
Java5 update - Convert Hashtable to HashMap
Change-Id: Ibb568e841ff574d5232429ce0ba99e421ed7f05c
Diffstat (limited to 'qadevOOo/runner/lib/TestParameters.java')
-rw-r--r--qadevOOo/runner/lib/TestParameters.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/runner/lib/TestParameters.java b/qadevOOo/runner/lib/TestParameters.java
index 79bc75308ee1..8849e2816474 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -18,7 +18,7 @@
package lib;
-import java.util.Hashtable;
+import java.util.HashMap;
import util.PropertyName;
import com.sun.star.beans.XPropertySet;
import com.sun.star.uno.XComponentContext;
@@ -31,7 +31,7 @@ import com.sun.star.uno.XComponentContext;
* for example, standard paths, connection strings, etc. The TestParameters
* also provides XMultiServiceFactory for the test (tests).
*/
-public class TestParameters extends Hashtable {
+public class TestParameters extends HashMap {
/**
* The ConnectionString for Office Connection<br>
@@ -167,7 +167,7 @@ public class TestParameters extends Hashtable {
* Wraper around "get()" with some debug output
* @param key A key of this table.
* @return The value of this key.
- * @see java.util.Hashtable
+ * @see java.util.HashMap
*/
public Object get(Object key) {
Object val = super.get(key);
@@ -234,7 +234,7 @@ public class TestParameters extends Hashtable {
* @param key A key of this table.
* @param val The value of the key.
* @return The value of this key.
- * @see java.util.Hashtable
+ * @see java.util.HashMap
*/
public Object put(Object key, Object val) {
return super.put(key,val);