summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-03-29 10:53:21 +0000
committerRüdiger Timm <rt@openoffice.org>2005-03-29 10:53:21 +0000
commitb2a737a543411bf219664f4da411f1c09dbe0813 (patch)
treefee7d6c9f5122ffeb3ab417e38437415a555c070 /qadevOOo/runner/lib
parent51c373343017b772ad8e9aad6e10ab027aca77b6 (diff)
INTEGRATION: CWS qadev22 (1.7.8); FILE MERGED
2005/03/17 13:10:33 sg 1.7.8.1: #i44053#CHG: removed java 131 incompatibilities
Diffstat (limited to 'qadevOOo/runner/lib')
-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 ed3d68d0aed6..808daeb89c3f 100644
--- a/qadevOOo/runner/lib/TestParameters.java
+++ b/qadevOOo/runner/lib/TestParameters.java
@@ -2,9 +2,9 @@
*
* $RCSfile: TestParameters.java,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-02-02 13:57:05 $
+ * last change: $Author: rt $ $Date: 2005-03-29 11:53:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -277,8 +277,8 @@ public class TestParameters extends Hashtable {
put(PropertyName.CONNECTION_STRING,ConnectionString);
put(PropertyName.TEST_BASE,TestBase);
put(PropertyName.TEST_DOCUMENT_PATH,TestDocumentPath);
- put(PropertyName.LOGGING_IS_ACTIVE,Boolean.valueOf(LoggingIsActive));
- put(PropertyName.DEBUG_IS_ACTIVE,Boolean.valueOf(DebugIsActive));
+ put(PropertyName.LOGGING_IS_ACTIVE,LoggingIsActive?Boolean.TRUE:Boolean.FALSE);
+ put(PropertyName.DEBUG_IS_ACTIVE,DebugIsActive?Boolean.TRUE:Boolean.FALSE);
put(PropertyName.OUT_PRODUCER,OutProducer);
put(PropertyName.SHORT_WAIT,new Integer(ShortWait));
put(PropertyName.OFFICE_PROVIDER,OfficeProvider);