This commit is contained in:
Lukas Eder 2020-12-10 14:19:34 +01:00
parent 091322bd4d
commit 1ebdf2d9ff

View File

@ -393,8 +393,9 @@ public final class Convert {
if (fromType == Object.class)
return converter.from((T) from);
else
return converter.from(new ConvertAll<>(fromType).from(from));
ConvertAll<T> convertAll = new ConvertAll<>(fromType);
return converter.from(convertAll.from(from));
}
/**