summaryrefslogtreecommitdiff
path: root/sw/qa/complex/writer/LoadSaveTest.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-18 10:01:21 +0200
committerNoel Grandin <noel@peralex.com>2014-11-18 12:44:28 +0200
commit0063cf285696951e336b9cec1da8881997b286ce (patch)
treebe70dfd8127c35f9e4a6d18d4db459a587813bf4 /sw/qa/complex/writer/LoadSaveTest.java
parent250391009aec9930abcc57930ddd4b6f56f4df9c (diff)
java: make fields final where possible
found by PMD Change-Id: I87780366119c141cd2dafe6ca1bf2d9798b10aec
Diffstat (limited to 'sw/qa/complex/writer/LoadSaveTest.java')
-rw-r--r--sw/qa/complex/writer/LoadSaveTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/qa/complex/writer/LoadSaveTest.java b/sw/qa/complex/writer/LoadSaveTest.java
index 34426256f8cf..77ec2a79f5d4 100644
--- a/sw/qa/complex/writer/LoadSaveTest.java
+++ b/sw/qa/complex/writer/LoadSaveTest.java
@@ -65,10 +65,10 @@ public class LoadSaveTest
private XMultiServiceFactory m_xMSF = null;
private XGlobalEventBroadcaster m_xGEB = null;
- private String m_fileURL = "file://";
+ private final String m_fileURL = "file://";
// these should be parameters or something?
- private String m_SourceDir = "FIXME";
- private String m_TargetDir = "/tmp/out";
+ private final String m_SourceDir = "FIXME";
+ private final String m_TargetDir = "/tmp/out";
@Before public void before() throws Exception
{