规范代码。
parent
6947846c84
commit
6164c1650b
|
@ -80,7 +80,8 @@ public class SQL extends AbstractSQL<SQL> {
|
||||||
|
|
||||||
private static String buildQuestionsList(int times) {
|
private static String buildQuestionsList(int times) {
|
||||||
char[] arr = new char[times * 3 - 2];
|
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++] = '?';
|
arr[i++] = '?';
|
||||||
if (t < times) {
|
if (t < times) {
|
||||||
arr[i++] = ',';
|
arr[i++] = ',';
|
||||||
|
|
Loading…
Reference in New Issue