summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/SysUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/util/SysUtils.java')
-rw-r--r--qadevOOo/runner/util/SysUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/qadevOOo/runner/util/SysUtils.java b/qadevOOo/runner/util/SysUtils.java
index 78abc9502883..68166bb3e3bf 100644
--- a/qadevOOo/runner/util/SysUtils.java
+++ b/qadevOOo/runner/util/SysUtils.java
@@ -33,9 +33,9 @@ import com.sun.star.datatransfer.*;
public class SysUtils {
public static String getJavaPath() {
- String cp = (String) System.getProperty("java.class.path");
- String jh = (String) System.getProperty("java.home");
- String fs = (String) System.getProperty("file.separator");
+ String cp = System.getProperty("java.class.path");
+ String jh = System.getProperty("java.home");
+ String fs = System.getProperty("file.separator");
jh = jh + fs + "bin" + fs;
jh = jh + "java -classpath "+cp;
return jh;