mirror of
https://github.com/status-im/QR-Code-generator.git
synced 2026-08-31 01:31:10 +00:00
Tweaked two comments in QrCode constructor, in all languages except C.
This commit is contained in:
@@ -222,10 +222,10 @@ public final class QrCode {
|
||||
// Initialize fields
|
||||
version = ver;
|
||||
size = ver * 4 + 17;
|
||||
modules = new boolean[size][size]; // Entirely white grid
|
||||
modules = new boolean[size][size]; // Initially all white
|
||||
isFunction = new boolean[size][size];
|
||||
|
||||
// Draw function patterns, draw all codewords, do masking
|
||||
// Compute ECC, draw modules, do masking
|
||||
drawFunctionPatterns();
|
||||
byte[] allCodewords = addEccAndInterleave(dataCodewords);
|
||||
drawCodewords(allCodewords);
|
||||
|
||||
Reference in New Issue
Block a user