Oops, StringBuffer.append(StringBuffer) doesn't exist in J2ME

git-svn-id: https://zxing.googlecode.com/svn/trunk@831 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2009-01-27 23:24:23 +00:00
parent f05302cc4c
commit bb373c5929

View 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);
}