summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/CfgParser.java
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-09-06 12:49:55 +0000
committerKurt Zenker <kz@openoffice.org>2007-09-06 12:49:55 +0000
commitd71eef7c3c895ba5369fb115e8e88655618d9495 (patch)
treeb5abecef1d064c60d8a657b4409d0f433b3fcbdd /qadevOOo/runner/helper/CfgParser.java
parent1706e8d0afc3d7d5cc3231dcfa028c491b7dd22c (diff)
INTEGRATION: CWS qadev30 (1.5.42); FILE MERGED
2007/07/11 12:12:19 cn 1.5.42.1: #i74278#: check for OperationSystem > 1
Diffstat (limited to 'qadevOOo/runner/helper/CfgParser.java')
-rw-r--r--qadevOOo/runner/helper/CfgParser.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/helper/CfgParser.java b/qadevOOo/runner/helper/CfgParser.java
index 9910ad4c2..59e9e4352 100644
--- a/qadevOOo/runner/helper/CfgParser.java
+++ b/qadevOOo/runner/helper/CfgParser.java
@@ -4,9 +4,9 @@
*
* $RCSfile: CfgParser.java,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:17:55 $
+ * last change: $Author: kz $ $Date: 2007-09-06 13:49:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -86,7 +86,7 @@ public class CfgParser {
//check for platform dependend parameters
//this would have a $OperatingSystem as prefix
String os = (String) param.get("OperatingSystem");
- if (os != null) {
+ if (os != null && os.length()>1) {
//found something that could be a prefex
//check all parameters for this
Enumeration keys = param.keys();