does intellij (no longer?) warn about unused varia...
# intellij
v
does intellij (no longer?) warn about unused variables in companion objects? I seem to remember it doing so it does seem to work as expected with class methods and variables inside a function. aaaa! the class in the library is marked with
@Suppress("unused")
and that's being "carried forward", why?
a
The annotation is applied recursively. If the companion object is nested inside this class, it will be affected as well.