From f57e3081052d6d148b4f8af70f838ba13ae96b29 Mon Sep 17 00:00:00 2001 From: Szymon Świstun Date: Mon, 16 Dec 2019 15:28:20 +0100 Subject: DRI infinite recursion plug --- core/src/main/kotlin/links/DRI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/main/kotlin') diff --git a/core/src/main/kotlin/links/DRI.kt b/core/src/main/kotlin/links/DRI.kt index b6270467..0bce22eb 100644 --- a/core/src/main/kotlin/links/DRI.kt +++ b/core/src/main/kotlin/links/DRI.kt @@ -95,7 +95,7 @@ data class TypeReference(val classNames: String, val typeBounds: List from(d) + is TypeParameterDescriptor -> TypeReference("todo:${d.name}") else -> TypeReference(t.constructorName.orEmpty(), t.arguments.map { from(it) }) } -- cgit