summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-18 11:03:04 +0200
committerNoel Grandin <noel@peralex.com>2015-01-05 08:23:30 +0200
commit46540d08b16f0e2e663734506cc072fe868ece82 (patch)
treebaca7dfe2e192ef2dd986cb641a45051f0612fb3 /framework
parenta49b2ba1a6a9467aa75d320b45671ae1e87314d3 (diff)
java: these fields can become local variables
found by PMD Change-Id: Id852cfec984a181b91aca1c00a41e342b720a4bf
Diffstat (limited to 'framework')
-rw-r--r--framework/qa/complex/path_substitution/PathSubstitutionTest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/qa/complex/path_substitution/PathSubstitutionTest.java b/framework/qa/complex/path_substitution/PathSubstitutionTest.java
index ff331392d5ba..8615de6f4fe3 100644
--- a/framework/qa/complex/path_substitution/PathSubstitutionTest.java
+++ b/framework/qa/complex/path_substitution/PathSubstitutionTest.java
@@ -38,7 +38,6 @@ import com.sun.star.util.XStringSubstitution;
public class PathSubstitutionTest
{
- private XMultiServiceFactory xMSF;
// all substitution variables
private VariableContainer substVars = null;
@@ -66,7 +65,7 @@ public class PathSubstitutionTest
*/
@Test public void checkXStringSubstitution()
{
- xMSF = getMSF();
+ XMultiServiceFactory xMSF = getMSF();
System.out.println("---- Testing the XStringSubstitution interface ----");
System.out.println("Create intance of test object.\n");
XStringSubstitution oObj = null;