summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/form
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/form')
-rw-r--r--qadevOOo/tests/java/ifc/form/_XApproveActionBroadcaster.java2
-rw-r--r--qadevOOo/tests/java/ifc/form/_XLoadable.java2
-rw-r--r--qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java2
-rw-r--r--qadevOOo/tests/java/ifc/form/binding/_XBindableValue.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/form/_XApproveActionBroadcaster.java b/qadevOOo/tests/java/ifc/form/_XApproveActionBroadcaster.java
index a0c9185f3071..f02f0251629e 100644
--- a/qadevOOo/tests/java/ifc/form/_XApproveActionBroadcaster.java
+++ b/qadevOOo/tests/java/ifc/form/_XApproveActionBroadcaster.java
@@ -56,7 +56,7 @@ public class _XApproveActionBroadcaster extends MultiMethodTest {
}
- private TestListener listener = new TestListener();
+ private final TestListener listener = new TestListener();
/**
* Test calls the method. <p>
diff --git a/qadevOOo/tests/java/ifc/form/_XLoadable.java b/qadevOOo/tests/java/ifc/form/_XLoadable.java
index ed7bf18270d9..27729c2b30c1 100644
--- a/qadevOOo/tests/java/ifc/form/_XLoadable.java
+++ b/qadevOOo/tests/java/ifc/form/_XLoadable.java
@@ -51,7 +51,7 @@ public class _XLoadable extends MultiMethodTest {
public boolean reloadingCalled = false ;
public boolean unloadedCalled = false ;
public boolean unloadingCalled = false ;
- private java.io.PrintWriter log = null ;
+ private final java.io.PrintWriter log;
public TestLoadListener(java.io.PrintWriter log) {
this.log = log ;
diff --git a/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java b/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
index e8cd10a36c1e..fbd9def90b75 100644
--- a/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
+++ b/qadevOOo/tests/java/ifc/form/_XUpdateBroadcaster.java
@@ -118,7 +118,7 @@ public class _XUpdateBroadcaster extends MultiMethodTest {
}
}
- private TestListener listener = new TestListener();
+ private final TestListener listener = new TestListener();
/**
* The listener methods calls are checked twice with approving
diff --git a/qadevOOo/tests/java/ifc/form/binding/_XBindableValue.java b/qadevOOo/tests/java/ifc/form/binding/_XBindableValue.java
index 498235f450b7..2c0869dc5645 100644
--- a/qadevOOo/tests/java/ifc/form/binding/_XBindableValue.java
+++ b/qadevOOo/tests/java/ifc/form/binding/_XBindableValue.java
@@ -83,7 +83,7 @@ public class _XBindableValue extends MultiMethodTest {
class MyValueBinding implements XValueBinding {
private Type[] TypeArray;
- private ArrayList<Type> types = new ArrayList<Type>();
+ private final ArrayList<Type> types = new ArrayList<Type>();
public com.sun.star.uno.Type[] getSupportedValueTypes() {
return TypeArray;