aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorSzymon Świstun <sswistun@virtuslab.com>2020-02-11 16:54:50 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-02-12 13:33:10 +0100
commitbd85ca8cafff33caa1a9f9a8e8b260d951e36597 (patch)
treee0c7eba53a1cec84738681c907dd070b7dc5f1d4 /core/src
parent59aed423949587f0fc72c4f2712fe36ae1de12bd (diff)
downloaddokka-bd85ca8cafff33caa1a9f9a8e8b260d951e36597.tar.gz
dokka-bd85ca8cafff33caa1a9f9a8e8b260d951e36597.tar.bz2
dokka-bd85ca8cafff33caa1a9f9a8e8b260d951e36597.zip
removed useless cast
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/kotlin/pages/PageNodes.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/pages/PageNodes.kt b/core/src/main/kotlin/pages/PageNodes.kt
index 244d951e..8edd7eca 100644
--- a/core/src/main/kotlin/pages/PageNodes.kt
+++ b/core/src/main/kotlin/pages/PageNodes.kt
@@ -138,7 +138,7 @@ class MemberPageNode(
override val embeddedResources: List<String> = listOf()
) : ContentPage {
override fun modified(name: String, children: List<PageNode>): MemberPageNode =
- modified(name = name, content = this.content, children = children) as MemberPageNode
+ modified(name = name, content = this.content, children = children)
override fun modified(
name: String,