Like #144 file: ZXing.OneD.UPCEANExtension5Support line: 160 current: ` resultString.Append('0' + IntToStr(bestMatch mod 10));` should be: ` resultString.Append(IntToStr(bestMatch mod 10));`
Like #144
file: ZXing.OneD.UPCEANExtension5Support
line: 160
current:
resultString.Append('0' + IntToStr(bestMatch mod 10));should be:
resultString.Append(IntToStr(bestMatch mod 10));