summaryrefslogtreecommitdiff
path: root/sw/qa/complex
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-11-18 15:20:11 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-11-25 06:06:48 +0000
commit58eab57648e222e5a3e488087afd44eea6efd591 (patch)
tree190af535c3871f3931a3b29dea55493751a01d03 /sw/qa/complex
parent1658c017a27ac2cccb2af89f88a4cde8ffdbe531 (diff)
java: final fields that can be static
found by PMD Change-Id: I2b48f35d252d6e914c2a18a2c175b075a9d3ac0f Reviewed-on: https://gerrit.libreoffice.org/13099 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/qa/complex')
-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 77ec2a79f5d4..e6027b6a7e94 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 final String m_fileURL = "file://";
+ private static final String m_fileURL = "file://";
// these should be parameters or something?
- private final String m_SourceDir = "FIXME";
- private final String m_TargetDir = "/tmp/out";
+ private static final String m_SourceDir = "FIXME";
+ private static final String m_TargetDir = "/tmp/out";
@Before public void before() throws Exception
{