i think there is a problem when dozer try to mapp a paramaterized variable i have this log :
java.lang.ClassCastException: sun.reflect.generics.reflectiveObjects.TypeVariableImpl cannot be cast to java.lang.Class dozer
for exemple, how to mapp this :
private List<t> childList = new ArrayList<>();
private T parent;</t>
i found the cause of this problem, if i put wildcard="tru" dozer can't cast my type T to Class<?> the method is Class<?> determineGenericsType(Type type) can you fix this in Dozer v5.4.0 please?