Skip to content

Commit

Permalink
Fixed build error.
Browse files Browse the repository at this point in the history
  • Loading branch information
essiembre committed Aug 30, 2024
1 parent e53e4ee commit 716b388
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ public class JsonXmlMapSerializer<T extends Map<?, ?>>

@SuppressWarnings("unchecked")
public JsonXmlMapSerializer() {
super((Class<T>) Map.class);
super((Class<T>) (Class<?>) Map.class);
}

@SuppressWarnings("unchecked")
private JsonXmlMapSerializer(BeanProperty currentProperty) {
super((Class<T>) Map.class);
super((Class<T>) (Class<?>) Map.class);
this.currentProperty = currentProperty;
}

Expand Down

0 comments on commit 716b388

Please sign in to comment.