aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Model
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-10-29 17:12:47 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-10-29 17:12:47 +0300
commit7ef0cf32835d6d652e408a2115d58c37749320c5 (patch)
tree605ae87a4eff6e85092ec29fff87fdda94b117b9 /core/src/main/kotlin/Model
parentf30807f4e78939fb59f8e46c39b3e538070aacfd (diff)
downloaddokka-7ef0cf32835d6d652e408a2115d58c37749320c5.tar.gz
dokka-7ef0cf32835d6d652e408a2115d58c37749320c5.tar.bz2
dokka-7ef0cf32835d6d652e408a2115d58c37749320c5.zip
Cleanup support for NodeRenderContent
Diffstat (limited to 'core/src/main/kotlin/Model')
-rw-r--r--core/src/main/kotlin/Model/Content.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/kotlin/Model/Content.kt b/core/src/main/kotlin/Model/Content.kt
index 7c776bdb..87a8023a 100644
--- a/core/src/main/kotlin/Model/Content.kt
+++ b/core/src/main/kotlin/Model/Content.kt
@@ -35,13 +35,13 @@ class NodeRenderContent(
get() = 0 //TODO: Clarify?
}
-class LazyContentBlock(private val fillChildren: (ContentBlock) -> Unit) : ContentBlock() {
+class LazyContentBlock(private val fillChildren: () -> List<ContentNode>) : ContentBlock() {
private var computed = false
override val children: ArrayList<ContentNode>
get() {
if (!computed) {
computed = true
- fillChildren(this)
+ children.addAll(fillChildren())
}
return super.children
}