summaryrefslogtreecommitdiff
path: root/xmerge
diff options
context:
space:
mode:
authorrbuj <robert.buj@gmail.com>2014-07-27 12:06:37 +0200
committerNoel Grandin <noelgrandin@gmail.com>2014-07-28 06:16:49 +0000
commit7d06a0601ddccc50185ea97fddcdf2ea39299096 (patch)
tree37ca921da65428f2af4c38d7b399613c2f90b8f6 /xmerge
parent274b628a2b523eb45e297352a85f0177c6e747f0 (diff)
xmerge: Unused assignment
Change-Id: Ie059c6689976c0a52fedaa6fdee2dd36d944eb56 Reviewed-on: https://gerrit.libreoffice.org/10574 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'xmerge')
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java
index d342daa4b908..82977ea21ee3 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDocument.java
@@ -97,7 +97,7 @@ public class PalmDocument
PdbDecoder decoder = new PdbDecoder();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buf = new byte[4096];
- int n = 0;
+ int n;
while ((n = is.read(buf)) > 0) {
baos.write(buf, 0, n);
}