2
0
mirror of https://gitee.com/hotlcc/wechat4j.git synced 2025-06-28 13:12:46 +08:00

提交代码:bug修复

This commit is contained in:
Allen 2018-09-14 20:55:12 +08:00
parent cba6b34a16
commit ce21807e3b

View File

@ -132,7 +132,7 @@ public final class QRCodeUtil {
} }
// 统计每个占位数出现的次数 // 统计每个占位数出现的次数
int[] num = new int[4]; int[] num = new int[4];
for (int i = 0; i > 4; i++) { for (int i = 0; i < 4; i++) {
int n = 0; int n = 0;
for (int s : size) { for (int s : size) {
if (s == size[i]) { if (s == size[i]) {