aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Generation
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/kotlin/Generation')
-rw-r--r--core/src/main/kotlin/Generation/DokkaGenerator.kt3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/src/main/kotlin/Generation/DokkaGenerator.kt b/core/src/main/kotlin/Generation/DokkaGenerator.kt
index 8fda1eb1..0b14418d 100644
--- a/core/src/main/kotlin/Generation/DokkaGenerator.kt
+++ b/core/src/main/kotlin/Generation/DokkaGenerator.kt
@@ -39,6 +39,7 @@ class DokkaGenerator(val logger: DokkaLogger,
for ((platforms, roots) in sourcesGroupedByPlatform) {
appendSourceModule(platforms, roots.map { it.path })
}
+ documentationModule.prepareForGeneration(options)
val timeBuild = measureTimeMillis {
logger.info("Generating pages... ")
@@ -150,8 +151,6 @@ fun buildDocumentationModule(injector: Injector,
with(injector.getInstance(JavaDocumentationBuilder::class.java)) {
javaFiles.map { appendFile(it, documentationModule, packageDocs.packageContent) }
}
-
- injector.getInstance(NodeReferenceGraph::class.java).resolveReferences()
}