#75 Internal constructors are included in Javadoc ...
# dokka
u
#75 Internal constructors are included in Javadoc [Kotlin/dokka] Issue created by fschoellhammer Configuration:
Copy code
dokka {
    moduleName = 'data'
    outputFormat = 'javadoc'
    outputDirectory = "$buildDir/javadoc"
    processConfigurations = ['compile']
    sourceDirs = files('src/main/java')
}
Class:
Copy code
data class Person internal constructor(
            val name: String = "",
            val age: Int = 0
    )
The internal constructor (both parameterless and the one accepting a String and an integer) are included in the Javadoc, although they are internal and should be excluded.