aboutsummaryrefslogtreecommitdiffstats
path: root/src/scratchpad/testcases/org/apache
diff options
context:
space:
mode:
authorDominik Stadler <centic@apache.org>2017-09-16 08:28:38 +0000
committerDominik Stadler <centic@apache.org>2017-09-16 08:28:38 +0000
commit399381da8df5e6926bbc4cc4a51b3d0723c4a6c7 (patch)
treeafd5a45d5c70298ce70681e7d4f3277457eccb4e /src/scratchpad/testcases/org/apache
parent0cfa1ede4cbc9c00d2f5d3946ae9f57a6dd74d48 (diff)
downloadpoi-399381da8df5e6926bbc4cc4a51b3d0723c4a6c7.tar.gz
poi-399381da8df5e6926bbc4cc4a51b3d0723c4a6c7.zip
Remove unnecessary local variables
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1808518 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/scratchpad/testcases/org/apache')
-rw-r--r--src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToFoConverter.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToFoConverter.java b/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToFoConverter.java
index 7dd60b0b8c..cd8ced23c9 100644
--- a/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToFoConverter.java
+++ b/src/scratchpad/testcases/org/apache/poi/hwpf/converter/TestWordToFoConverter.java
@@ -57,8 +57,7 @@ public class TestWordToFoConverter
new DOMSource( wordToFoConverter.getDocument() ),
new StreamResult( stringWriter ) );
- String result = stringWriter.toString();
- return result;
+ return stringWriter.toString();
}
@Test