So what is the recommended way of dealing with `Re...
# intellij
m
So what is the recommended way of dealing with
RemoveExplicitTypeArguments
inspection where inferring type in question is only supported by the new inferrence in IDE and would not compile otherwise? Suppress the warning? Just ignore it?
l
Enabling new type inference (see https://discuss.kotlinlang.org/t/new-type-inference-in-kotlin-1-3-0-rc-190/9914), then report issues you encounter on kotl.in/issue if any
m
right but what if I want to keep the old inferrence in compiler?
Just ignore the IDE warnings?
l
You can disable it. Search the IDE settings
m
Right, but that will disable both legitimate warnings and those only-for-new-inference warnings
l
No, you can disable use of new inference in IDE settings, I was not talking about disabling the warnings.
m
oh right