You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
As per today, the library is able to transform all the elements inside a Collection or a Map if their type is specified in the generic type, so it's not able to transform object described as following:
private final Collection<? super Object> collection;
private final Collection collection;
private final Map map;
private final Map<?, ?> map;
private final Map<? super Object, ? super Object> map;
The purpose of this issue is to make the library able to transform such objects.
The text was updated successfully, but these errors were encountered:
Description
As per today, the library is able to transform all the elements inside a
Collection
or aMap
if their type is specified in the generic type, so it's not able to transform object described as following:The purpose of this issue is to make the library able to transform such objects.
The text was updated successfully, but these errors were encountered: