Is there any way to disable the warning “‘kotlin.R...
# intellij
t
Is there any way to disable the warning “‘kotlin.Result’ cannot be used as return type” ? I added the compiler flag so the code compiles and runs ok, it’s just the IDE warning that’s still there and it’s a bit annoying
a
@Suppress("RESULT_CLASS_IN_RETURN_TYPE")
your declaration.
t
Thanks