Currently I am having to do ```/** private **/ fun...
# java-to-kotlin-refactoring
d
Currently I am having to do
Copy code
/** private **/ fun methodName()
to at least document the programmers intention, even if the language forcing something else.
Looking more into this... The issue is the result of the use of method with default arguments. Kotlin generates what maybe a
private final methodName$default() { methodName(defaultValueConstant) }