From c3b798fc31779468d65538b105085a3bd945792f Mon Sep 17 00:00:00 2001 From: Błażej Kardyś Date: Sat, 15 Feb 2020 20:23:54 +0100 Subject: Removing duplicated content blocks --- core/src/main/kotlin/model/Documentable.kt | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) (limited to 'core/src/main/kotlin/model') diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 1744e27f..e64f82ac 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -190,20 +190,16 @@ abstract class Documentable { override fun hashCode() = dri.hashCode() - - val commentsData: List - get() = platformInfo.map { it.documentationNode } - - val briefDocTagString: String - get() = - platformInfo - .firstOrNull() - ?.documentationNode - ?.children - ?.firstOrNull() - ?.root - ?.docTagSummary() - ?.shorten(40) ?: "" + val briefDocTagString: String by lazy { + platformInfo + .firstOrNull() + ?.documentationNode + ?.children + ?.firstOrNull() + ?.root + ?.docTagSummary() + ?.shorten(40) ?: "" + } open val extra: MutableSet = mutableSetOf() } -- cgit