You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2021/08/14 03:09:06 UTC

[commons-lang] 02/03: Format.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit b7f13b96636b379eaa3ca209541a7af3c85dbc61
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Aug 13 22:12:02 2021 -0400

    Format.
---
 .../java/org/apache/commons/lang3/reflect/ConstructorUtilsTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/lang3/reflect/ConstructorUtilsTest.java b/src/test/java/org/apache/commons/lang3/reflect/ConstructorUtilsTest.java
index 981e993..2299c78 100644
--- a/src/test/java/org/apache/commons/lang3/reflect/ConstructorUtilsTest.java
+++ b/src/test/java/org/apache/commons/lang3/reflect/ConstructorUtilsTest.java
@@ -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]);
             }
         }