From 19996f2e89baf7bdeb83ec709400980721d189ed Mon Sep 17 00:00:00 2001 From: Paweł Marks Date: Thu, 25 Jun 2020 17:40:12 +0200 Subject: Silence for now dependency to coroutines because it was breaking some tests --- .../main/kotlin/translators/documentables/DefaultPageCreator.kt | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'plugins/base/src/main') diff --git a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt index ab3fb70c..42db9a1d 100644 --- a/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt +++ b/plugins/base/src/main/kotlin/translators/documentables/DefaultPageCreator.kt @@ -1,6 +1,5 @@ package org.jetbrains.dokka.base.translators.documentables -import org.jetbrains.dokka.DokkaConfiguration import org.jetbrains.dokka.base.signatures.SignatureProvider import org.jetbrains.dokka.base.transformers.documentables.CallableExtensions import org.jetbrains.dokka.base.transformers.documentables.InheritorsInfo @@ -14,7 +13,6 @@ import org.jetbrains.dokka.model.properties.WithExtraProperties import org.jetbrains.dokka.pages.* import org.jetbrains.dokka.utilities.DokkaLogger import org.jetbrains.kotlin.utils.addToStdlib.safeAs -import javax.print.Doc import kotlin.reflect.KClass import kotlin.reflect.full.isSubclassOf import org.jetbrains.dokka.DokkaConfiguration.DokkaSourceSet @@ -182,10 +180,9 @@ open class DefaultPageCreator( } protected open fun contentForClasslike(c: DClasslike) = contentBuilder.contentFor(c) { - val sourceSets = c.sourceSets.toSet() group(kind = ContentKind.Cover) { cover(c.name.orEmpty()) - sourceSetDependentHint(c.dri, sourceSets) { + sourceSetDependentHint(c.dri, c.sourceSets) { +contentForDescription(c) +buildSignature(c) } @@ -199,7 +196,7 @@ open class DefaultPageCreator( 2, ContentKind.Constructors, c.constructors.filter { it.extra[PrimaryConstructorExtra] == null }, - sourceSets, + c.sourceSets, extra = PropertyContainer.empty() + SimpleAttr.header("Constructors") ) { link(it.name, it.dri, kind = ContentKind.Main) -- cgit