Tweaked two comments in QrCode constructor, in all languages except C.

This commit is contained in:
Project Nayuki
2018-10-05 01:47:05 +00:00
parent f63f7f79a6
commit d060e97e03
6 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -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);