diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/kotlin/links/DRI.kt | 4 | ||||
-rw-r--r-- | core/src/main/kotlin/renderers/FileWriter.kt | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/core/src/main/kotlin/links/DRI.kt b/core/src/main/kotlin/links/DRI.kt index 0aeba264..6d709603 100644 --- a/core/src/main/kotlin/links/DRI.kt +++ b/core/src/main/kotlin/links/DRI.kt @@ -95,10 +95,6 @@ data class TypeReference(val classNames: String, val typeBounds: List<TypeRefere private fun from(t: KotlinType): TypeReference = TypeReference(t.constructorName.orEmpty(), t.arguments.map { from(it) }) -// when (val d = t.constructor.declarationDescriptor) { -// is TypeParameterDescriptor -> TypeReference("todo:${d.name}") -// else -> TypeReference(t.constructorName.orEmpty(), t.arguments.map { from(it) }) -// } private fun from(t: TypeProjection): TypeReference = if (t.isStarProjection) { diff --git a/core/src/main/kotlin/renderers/FileWriter.kt b/core/src/main/kotlin/renderers/FileWriter.kt index 079fe23b..9ee02b4b 100644 --- a/core/src/main/kotlin/renderers/FileWriter.kt +++ b/core/src/main/kotlin/renderers/FileWriter.kt @@ -1,6 +1,5 @@ package org.jetbrains.dokka.renderers -import org.jetbrains.dokka.utilities.DokkaConsoleLogger import java.io.File import java.io.IOException import java.nio.file.Paths |