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/05/25 21:19:28 UTC

[commons-lang] branch master updated: Format nit.

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


The following commit(s) were added to refs/heads/master by this push:
     new bbc690f  Format nit.
bbc690f is described below

commit bbc690f2cbcb9ebda89e18ed0f4745984888cac5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue May 25 17:19:23 2021 -0400

    Format nit.
---
 src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
index 3b9fafd..5467637 100644
--- a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
+++ b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
@@ -270,8 +270,7 @@ public class ConstructorUtils {
                     if (result == null || MemberUtils.compareConstructorFit(ctor, result, parameterTypes) < 0) {
                         // temporary variable for annotation, see comment above (1)
                         @SuppressWarnings("unchecked")
-                        final
-                        Constructor<T> constructor = (Constructor<T>) ctor;
+                        final Constructor<T> constructor = (Constructor<T>) ctor;
                         result = constructor;
                     }
                 }