bdawg.io
08/12/2018, 2:18 AM@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