From a76e5a6f50302382fa53608ff79de3dd1926d84c Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Thu, 22 Oct 2015 19:18:07 +0300 Subject: Update to changes in Kotlin Beta. --- src/Model/DocumentationNode.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Model/DocumentationNode.kt') diff --git a/src/Model/DocumentationNode.kt b/src/Model/DocumentationNode.kt index 2f0638bc..04285594 100644 --- a/src/Model/DocumentationNode.kt +++ b/src/Model/DocumentationNode.kt @@ -138,6 +138,7 @@ fun DocumentationNode.append(child: DocumentationNode, kind: DocumentationRefere DocumentationReference.Kind.Detail -> child.addReferenceTo(this, DocumentationReference.Kind.Owner) DocumentationReference.Kind.Member -> child.addReferenceTo(this, DocumentationReference.Kind.Owner) DocumentationReference.Kind.Owner -> child.addReferenceTo(this, DocumentationReference.Kind.Member) + else -> { /* Do not add any links back for other types */ } } } -- cgit