规范代码。

feature/net-util
ZhouXY108 2023-06-07 11:31:54 +08:00
parent 6947846c84
commit 6164c1650b
1 changed files with 2 additions and 1 deletions

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++] = ',';