Skip to content

Commit

Permalink
Format nit.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed May 25, 2021
1 parent 357951f commit bbc690f
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -270,8 +270,7 @@ public static <T> Constructor<T> getMatchingAccessibleConstructor(final Class<T>
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;
}
}
Expand Down

0 comments on commit bbc690f

Please sign in to comment.