aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-10-03 21:32:09 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2018-10-03 21:32:09 +0300
commit5c7fd99bc38bdbd681d273b760868705341c5594 (patch)
tree1647fa944211ca1f58f5957b48952f657f956b6e /core
parent004df26993d479022b59353b55f31690b94f37cf (diff)
downloaddokka-5c7fd99bc38bdbd681d273b760868705341c5594.tar.gz
dokka-5c7fd99bc38bdbd681d273b760868705341c5594.tar.bz2
dokka-5c7fd99bc38bdbd681d273b760868705341c5594.zip
Fix module content lost on merging
Diffstat (limited to 'core')
-rw-r--r--core/src/main/kotlin/Generation/DocumentationMerger.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/src/main/kotlin/Generation/DocumentationMerger.kt b/core/src/main/kotlin/Generation/DocumentationMerger.kt
index 54485930..fc2bf0fa 100644
--- a/core/src/main/kotlin/Generation/DocumentationMerger.kt
+++ b/core/src/main/kotlin/Generation/DocumentationMerger.kt
@@ -181,6 +181,7 @@ class DocumentationMerger(
fun merge(): DocumentationModule {
val mergedDocumentationModule = DocumentationModule(
name = documentationModules.first().name,
+ content = documentationModules.first().content,
nodeRefGraph = producedNodeRefGraph
)