diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-10-03 21:32:09 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2018-10-03 21:32:09 +0300 |
commit | 5c7fd99bc38bdbd681d273b760868705341c5594 (patch) | |
tree | 1647fa944211ca1f58f5957b48952f657f956b6e /core | |
parent | 004df26993d479022b59353b55f31690b94f37cf (diff) | |
download | dokka-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.kt | 1 |
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 ) |