<https://blog.kotlin-academy.com/effective-java-in...
# feed
d
nice article 🙂 there is also Item 22 - Favor static member classes over nonstatic http://thefinestartist.com/effective-java/22
Kotlin does it by default
m
I think it is still applicable. Moving constants to companion object is a good practice too.
Also we should still prefer static classes over object expression
👍 1
d
I see, it only covers it partially