mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
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:
parent
f05302cc4c
commit
bb373c5929
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue