diff options
author | Noel Grandin <noel@peralex.com> | 2012-06-28 15:17:31 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-06-29 22:03:04 +0200 |
commit | 3fba4e261f9fef7f1bcdf9af36ac96135f26705f (patch) | |
tree | f49db40cc6d5693edb81676ddfd0b1e24d857117 /framework | |
parent | ebd44e44b7a7e43fcf0a120fbdeeb2b4873065bb (diff) |
Java5 update - convert Hashtable to HashMap
Change-Id: If301765c8410fa39c978a27b234d38b9780ccc47
Diffstat (limited to 'framework')
-rw-r--r-- | framework/qa/complex/framework/recovery/RecoveryTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/qa/complex/framework/recovery/RecoveryTest.java b/framework/qa/complex/framework/recovery/RecoveryTest.java index b8695d4ab3f8..55e040cce196 100644 --- a/framework/qa/complex/framework/recovery/RecoveryTest.java +++ b/framework/qa/complex/framework/recovery/RecoveryTest.java @@ -67,7 +67,7 @@ import java.awt.Dimension; import java.awt.Point; import java.awt.Toolkit; import java.io.PrintWriter; -import java.util.Hashtable; +import java.util.HashMap; import java.util.Random; import util.DesktopTools; import util.PropertyName; @@ -108,7 +108,7 @@ public class RecoveryTest extends ComplexTestCase { * and the values are com sun.star.awt.Rectangle. * @see com.sun.star.awt.Rectangle */ - private Hashtable windowsPosSize = new Hashtable(); + private HashMap windowsPosSize = new HashMap(); /** * A function to tell the framework, which test functions are available. |