规范代码。

This commit is contained in:
zhouxy108 2023-06-07 11:31:54 +08:00
parent 6947846c84
commit 6164c1650b

View File

@ -80,7 +80,8 @@ public class SQL extends AbstractSQL<SQL> {
private static String buildQuestionsList(int times) {
char[] arr = new char[times * 3 - 2];
for (int t = 1, i = 0; t <= times; t++) {
int i = 0;
for (int t = 1; t <= times; t++) {
arr[i++] = '?';
if (t < times) {
arr[i++] = ',';