Oops, StringBuffer.append(StringBuffer) doesn't exist in J2ME
authorsrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 27 Jan 2009 23:24:23 +0000 (23:24 +0000)
committersrowen <srowen@59b500cc-1b3d-0410-9834-0bbf25fbcc57>
Tue, 27 Jan 2009 23:24:23 +0000 (23:24 +0000)
git-svn-id: http://zxing.googlecode.com/svn/trunk@831 59b500cc-1b3d-0410-9834-0bbf25fbcc57

core/src/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java

index 5a3293e..2f7c1f4 100644 (file)
@@ -108,7 +108,7 @@ final class DecodedBitStreamParser {
       }
     } while (mode != PAD_ENCODE && bits.available() > 0);
     if (resultTrailer.length() > 0) {
-      result.append(resultTrailer);
+      result.append(resultTrailer.toString());
     }
     return new DecoderResult(bytes, result.toString(), byteSegments.isEmpty() ? null : byteSegments);
   }