aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/links
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/links')
-rw-r--r--core/src/main/kotlin/links/DRI.kt4
1 files changed, 0 insertions, 4 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) {