mirror of
https://github.com/status-im/QR-Code-generator.git
synced 2026-08-31 09:41:08 +00:00
Added comment about remainder bits in QR symbol in all language versions.
This commit is contained in:
@@ -514,6 +514,8 @@ public final class QrCode {
|
||||
modules[y][x] = ((data[i >>> 3] >>> (7 - (i & 7))) & 1) != 0;
|
||||
i++;
|
||||
}
|
||||
// If there are any remainder bits (0 to 7), they are already
|
||||
// set to 0/false/white when the grid of modules was initialized
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user