The deprecated `other?.javaClass` is replaced with...
# eap
k
The deprecated
other?.javaClass
is replaced with
other?.let { it::class.java }
. Semantically correct but it looks so unwieldy.