hypfvieh / dbus-java

Improved version of java DBus library provided by freedesktop.org (https://dbus.freedesktop.org/doc/dbus-java/)
https://hypfvieh.github.io/dbus-java/
MIT License
185 stars 73 forks source link

Handle wildcard types to support Kotlin better #270

Closed vicr123 closed 10 hours ago

vicr123 commented 1 day ago

This PR adds support to the marshaller for wildcard types (e.g. Map<String, ? extends List<String> -> a{sas}) which is needed because reflection in Kotlin transforms a Map<String, List<String>> into the former.

Closes #269