diff options
author | Paweł Marks <pmarks@virtuslab.com> | 2019-11-25 15:34:47 +0100 |
---|---|---|
committer | Paweł Marks <pmarks@virtuslab.com> | 2019-11-26 15:27:04 +0100 |
commit | a945617725e8df084270aacd5af76da2b911111e (patch) | |
tree | f752ceb1427108d052575440c339b61bcd6bb5a9 /core/src/main/kotlin/DokkaGenerator.kt | |
parent | 4b1a3a2cbe62f98c9f1b472e70d754645d7f8641 (diff) | |
download | dokka-a945617725e8df084270aacd5af76da2b911111e.tar.gz dokka-a945617725e8df084270aacd5af76da2b911111e.tar.bz2 dokka-a945617725e8df084270aacd5af76da2b911111e.zip |
Interface segregation in plugins api
Diffstat (limited to 'core/src/main/kotlin/DokkaGenerator.kt')
-rw-r--r-- | core/src/main/kotlin/DokkaGenerator.kt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/src/main/kotlin/DokkaGenerator.kt b/core/src/main/kotlin/DokkaGenerator.kt index b29a0da2..05eb3054 100644 --- a/core/src/main/kotlin/DokkaGenerator.kt +++ b/core/src/main/kotlin/DokkaGenerator.kt @@ -25,9 +25,7 @@ class DokkaGenerator( fun generate(): Unit { logger.debug("Initializing plugins") - val context = DokkaContext.from(configuration.pluginsClasspath) - logger.progress("Loaded plugins: ${context.pluginNames}") - logger.progress("Loaded: ${context.loadedListForDebug}") + val context = DokkaContext.create(configuration.pluginsClasspath, logger) configuration.passesConfigurations.map { pass -> AnalysisEnvironment(DokkaMessageCollector(logger), pass.analysisPlatform).run { |