summaryrefslogtreecommitdiff
path: root/javaunohelper/test
diff options
context:
space:
mode:
authorRobert Antoni Buj i Gelonch <robert.buj@gmail.com>2014-09-19 12:22:32 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-09-19 13:50:25 +0000
commit19206458555de6c1043aef8ead96067c3d8bca4d (patch)
tree45001d8ff5dc21ccf4cfc949b00184b290c17733 /javaunohelper/test
parent8af25862f1782ff1fb0f66415e3a2d624f61d737 (diff)
javaunohelper: use HashMap instead of Hashtable Collection
Change-Id: I04e3245342a83df762fbec35a1523021a021f896 Reviewed-on: https://gerrit.libreoffice.org/11547 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'javaunohelper/test')
-rw-r--r--javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java b/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
index fc7640ef23ec..57724be79300 100644
--- a/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
+++ b/javaunohelper/test/com/sun/star/comp/helper/Bootstrap_Test.java
@@ -25,10 +25,11 @@ import com.sun.star.uno.XComponentContext;
import com.sun.star.lang.XComponent;
import com.sun.star.lang.XMultiServiceFactory;
+import java.util.Map;
public class Bootstrap_Test {
- static public boolean test( String ini_file, java.util.Map<String,String> bootstrap_parameters )
+ static public boolean test( String ini_file, Map<String,String> bootstrap_parameters )
throws java.lang.Exception
{
boolean passed = false;