diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-08-05 22:56:16 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-14 17:51:11 +0200 |
commit | e3c1b2bdbfe20e602fbf570df946edc94266e5ff (patch) | |
tree | ccd210e61209e7540954667a34d8d4126a8a0c70 /core/src/main | |
parent | 23827bed7b4877b15633e1924f7ee3864f8ebe2c (diff) | |
download | dokka-e3c1b2bdbfe20e602fbf570df946edc94266e5ff.tar.gz dokka-e3c1b2bdbfe20e602fbf570df946edc94266e5ff.tar.bz2 dokka-e3c1b2bdbfe20e602fbf570df946edc94266e5ff.zip |
API refinement for AbstractDokkaParentTask and DokkaMultiModuleTask
Diffstat (limited to 'core/src/main')
-rw-r--r-- | core/src/main/kotlin/defaultConfiguration.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/defaultConfiguration.kt b/core/src/main/kotlin/defaultConfiguration.kt index 384fa27e..ec461ffd 100644 --- a/core/src/main/kotlin/defaultConfiguration.kt +++ b/core/src/main/kotlin/defaultConfiguration.kt @@ -32,7 +32,7 @@ data class DokkaSourceSetImpl( override val jdkVersion: Int = DokkaDefaults.jdkVersion, override val sourceLinks: Set<SourceLinkDefinitionImpl> = emptySet(), override val perPackageOptions: List<PackageOptionsImpl> = emptyList(), - override var externalDocumentationLinks: Set<ExternalDocumentationLinkImpl> = emptySet(), + override val externalDocumentationLinks: Set<ExternalDocumentationLinkImpl> = emptySet(), override val languageVersion: String? = null, override val apiVersion: String? = null, override val noStdlibLink: Boolean = DokkaDefaults.noStdlibLink, |