Polishing.

Reformat code.

Original pull request: #2314.
Closes: #2313
This commit is contained in:
Mark Paluch
2021-03-01 10:33:18 +01:00
parent 8917115ba9
commit 3f1609587e
2 changed files with 23 additions and 26 deletions

View File

@@ -177,7 +177,7 @@ class TypeDiscoverer<S> implements TypeInformation<S> {
Assert.notNull(constructor, "Constructor must not be null!");
List<TypeInformation<?>> parameterTypes = new ArrayList<>(constructor.getParameterCount());
for(Parameter parameter : constructor.getParameters()) {
for (Parameter parameter : constructor.getParameters()) {
parameterTypes.add(createInfo(parameter.getParameterizedType()));
}
return parameterTypes;