Skip to content

Commit c85200c

Browse files
codebudegfoidl
andauthored
Update QRCoder/QRCodeGenerator.cs
Co-authored-by: Günther Foidl <[email protected]>
1 parent 4e82c99 commit c85200c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

QRCoder/QRCodeGenerator.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ public static QRCodeData GenerateQrCode(byte[] binaryData, ECCLevel eccLevel)
172172
string modeIndicator = DecToBin((int)EncodingMode.Byte, 4);
173173
string countIndicator = DecToBin(binaryData.Length, GetCountIndicatorLength(version, EncodingMode.Byte));
174174

175-
string bitString = "";
176175
StringBuilder sb = new StringBuilder();
177176
sb.Append(modeIndicator + countIndicator);
178177
foreach (byte b in binaryData)

0 commit comments

Comments
 (0)