From 5c7fd99bc38bdbd681d273b760868705341c5594 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Wed, 3 Oct 2018 21:32:09 +0300 Subject: Fix module content lost on merging --- core/src/main/kotlin/Generation/DocumentationMerger.kt | 1 + 1 file changed, 1 insertion(+) (limited to 'core') 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 ) -- cgit