summaryrefslogtreecommitdiff
path: root/qadevOOo/tests
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-02-03 15:34:26 +0200
committerNoel Grandin <noel@peralex.com>2015-04-20 11:18:22 +0200
commit14bc818895a5cc10054928b5cbb49eaff086e8f4 (patch)
tree25010ed72a1e982bde159671f012d0db2c47f7d6 /qadevOOo/tests
parentb4adcc441d9c6396797321c055858f1e85807374 (diff)
java: some random small cleanups
Change-Id: I22a5b9fa29d465a21e682279e6e88d37bd8adf93
Diffstat (limited to 'qadevOOo/tests')
-rw-r--r--qadevOOo/tests/java/ifc/beans/_XFastPropertySet.java7
1 files changed, 1 insertions, 6 deletions
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>();