rsocket / rsocket-java

Java implementation of RSocket
http://rsocket.io
Apache License 2.0
2.36k stars 354 forks source link

eliminate boxing in RequesterResponderSupport when using IntObjectMap #1029

Closed olme04 closed 2 years ago

olme04 commented 2 years ago

IntObjectMap implements Map and as so it has methods:

Those declarations uses Object for keys, and not specified for usage of int primitive as key, and as so it autobox them.