diff options
author | Noel Grandin <noel@peralex.com> | 2015-02-03 15:34:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-20 11:18:22 +0200 |
commit | 14bc818895a5cc10054928b5cbb49eaff086e8f4 (patch) | |
tree | 25010ed72a1e982bde159671f012d0db2c47f7d6 /qadevOOo | |
parent | b4adcc441d9c6396797321c055858f1e85807374 (diff) |
java: some random small cleanups
Change-Id: I22a5b9fa29d465a21e682279e6e88d37bd8adf93
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/helper/OfficeProvider.java | 1 | ||||
-rw-r--r-- | qadevOOo/runner/helper/OfficeWatcher.java | 1 | ||||
-rw-r--r-- | qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java | 7 |
3 files changed, 1 insertions, 8 deletions
diff --git a/qadevOOo/runner/helper/OfficeProvider.java b/qadevOOo/runner/helper/OfficeProvider.java index 8b20a3cf99c2..d2dd45997764 100644 --- a/qadevOOo/runner/helper/OfficeProvider.java +++ b/qadevOOo/runner/helper/OfficeProvider.java @@ -31,7 +31,6 @@ import com.sun.star.util.XStringSubstitution; import java.io.File; import java.io.PrintWriter; -import java.util.StringTokenizer; import lib.TestParameters; diff --git a/qadevOOo/runner/helper/OfficeWatcher.java b/qadevOOo/runner/helper/OfficeWatcher.java index ac35513953a9..50765a867ab0 100644 --- a/qadevOOo/runner/helper/OfficeWatcher.java +++ b/qadevOOo/runner/helper/OfficeWatcher.java @@ -18,7 +18,6 @@ package helper; import lib.TestParameters; -import java.util.StringTokenizer; import util.utils; public class OfficeWatcher extends Thread implements share.Watcher { diff --git a/qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java b/qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java index b0b645a62552..8ab74dcda173 100644 --- a/qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java +++ b/qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java @@ -57,16 +57,11 @@ public class _XFastPropertySet extends MultiMethodTest { public final int handle; public final String name; - public Prop() { - handle = -1; - name = null; - } - public Prop(int handle, String name) { this.handle = handle; this.name = name; } - }; + } public XFastPropertySet oObj = null; private final List<Prop> props = new ArrayList<Prop>(); |