I thought that `@JvmSuppressWildcards` only applie...
# dagger
b
I thought that
@JvmSuppressWildcards
only applies to removing variance from type arguments. Meaning
@JvmSuppressWildcards Map<String, out Int>
would be produced in java as
Map<String, Integer>
instead of
Map<String, ? extends Integer>
If you are wanting just a raw type, I don’t believe that annotation will doing much for you since you want to remove type arguments, not just their variance