From 65e69a8d204f873a4034810436649c3f02de3ad0 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 14 May 2020 17:47:39 +0200 Subject: Divergent UI fixes --- core/src/main/kotlin/model/doc/DocTag.kt | 7 ------- 1 file changed, 7 deletions(-) (limited to 'core/src') diff --git a/core/src/main/kotlin/model/doc/DocTag.kt b/core/src/main/kotlin/model/doc/DocTag.kt index 8a9521ab..812acd62 100644 --- a/core/src/main/kotlin/model/doc/DocTag.kt +++ b/core/src/main/kotlin/model/doc/DocTag.kt @@ -6,13 +6,6 @@ sealed class DocTag( val children: List, val params: Map ) { - fun docTagSummary(): String { - if(this.children.isEmpty() && this is Text) - return this.body - - return this.children.joinToString(" ") { it.docTagSummary() } - } - override fun equals(other: Any?): Boolean = ( other != null && -- cgit