Just a curiosity, but why does Kotlin see Java's `...
# random
k
Just a curiosity, but why does Kotlin see Java's
URLClassLoader.getURLs()
as the property
urLs
instead of
uRLs
?
j
It often makes sense, for example if there was a function
getURLReader()
then the property would be
urlReader
. So I guess the logic works most of the time, and this case wasn't identified or not considered worth an exception.
👍 2