diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-12-02 04:29:07 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-12-02 04:29:07 +0300 |
commit | c1abcaf32abd4e2d74b9246385b3541096cdb5b9 (patch) | |
tree | cdfa6753f5922186c7fd77824003e04ea1dd3d10 /core/src/main/kotlin/Utilities/DokkaModules.kt | |
parent | f08f711a4290b47149ae3454d698e78c9f4c8e16 (diff) | |
download | dokka-c1abcaf32abd4e2d74b9246385b3541096cdb5b9.tar.gz dokka-c1abcaf32abd4e2d74b9246385b3541096cdb5b9.tar.bz2 dokka-c1abcaf32abd4e2d74b9246385b3541096cdb5b9.zip |
Extract Analysis components out of FormatDescriptor
Fight with statically injected HtmlTemplateService
Diffstat (limited to 'core/src/main/kotlin/Utilities/DokkaModules.kt')
-rw-r--r-- | core/src/main/kotlin/Utilities/DokkaModules.kt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/core/src/main/kotlin/Utilities/DokkaModules.kt b/core/src/main/kotlin/Utilities/DokkaModules.kt index 9db08010..a2d720ef 100644 --- a/core/src/main/kotlin/Utilities/DokkaModules.kt +++ b/core/src/main/kotlin/Utilities/DokkaModules.kt @@ -49,11 +49,6 @@ class DokkaOutputModule(val options: DocumentationOptions, val logger: DokkaLogger) : Module { override fun configure(binder: Binder) { binder.bind(LanguageService::class.java).to(KotlinLanguageService::class.java) - - binder.bind(HtmlTemplateService::class.java).toProvider(object : Provider<HtmlTemplateService> { - override fun get(): HtmlTemplateService = HtmlTemplateService.default("style.css") - }) - binder.bind(File::class.java).annotatedWith(Names.named("outputDir")).toInstance(File(options.outputDir)) // binder.bindNameAnnotated<LocationService, SingleFolderLocationService>("singleFolder") |