Typical mistake caused by that (although not reall...
# reflect
u
Typical mistake caused by that (although not really critical here):
Copy code
class Some {
    companion object {
        val LOG = Logger.getInstance(javaClass())    // logger for Some$Companion, not Some!
    }
}