Format nit.

This commit is contained in:
Gary Gregory 2021-05-25 17:19:23 -04:00
parent 357951ff5c
commit bbc690f2cb
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}
}