summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper/OfficeWatcher.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/runner/helper/OfficeWatcher.java')
-rw-r--r--qadevOOo/runner/helper/OfficeWatcher.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/runner/helper/OfficeWatcher.java b/qadevOOo/runner/helper/OfficeWatcher.java
index 624e5c0238d1..60900c0052bd 100644
--- a/qadevOOo/runner/helper/OfficeWatcher.java
+++ b/qadevOOo/runner/helper/OfficeWatcher.java
@@ -24,14 +24,14 @@ import util.utils;
public class OfficeWatcher extends Thread implements share.Watcher {
public boolean finish;
- private TestParameters params;
+ private final TestParameters params;
private int StoredPing = 0;
- private boolean debug = false;
+ private final boolean debug;
public OfficeWatcher(TestParameters param) {
- finish = false;
+ this.finish = false;
this.params = param;
- debug = params.getBool(util.PropertyName.DEBUG_IS_ACTIVE);
+ this.debug = params.getBool(util.PropertyName.DEBUG_IS_ACTIVE);
}
/**