This commit is contained in:
Gary Gregory 2021-08-13 22:12:02 -04:00
parent 9060099e40
commit b7f13b9663
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class ConstructorUtilsTest {
public TestBean(final Integer first, final int... args) {
toString = "(Integer, String...)";
varArgs = new String[args.length];
for (int i = 0; i< args.length; ++i) {
for (int i = 0; i < args.length; ++i) {
varArgs[i] = Integer.toString(args[i]);
}
}