aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-12-15 22:01:02 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-12-15 22:18:32 +0300
commitec3d364e49268f1dfbc7619245ec36a49e780169 (patch)
tree86c8950a60241584ad1e7a546fec68c79165b5e4 /core/src
parentdbd4774ffae19ff4d52cd21c7cb3906cdc3e0b5c (diff)
downloaddokka-ec3d364e49268f1dfbc7619245ec36a49e780169.tar.gz
dokka-ec3d364e49268f1dfbc7619245ec36a49e780169.tar.bz2
dokka-ec3d364e49268f1dfbc7619245ec36a49e780169.zip
Don't force bind LanguageService to KotlinLanguageService
Diffstat (limited to 'core/src')
-rw-r--r--core/src/main/kotlin/Utilities/DokkaModules.kt1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Utilities/DokkaModules.kt b/core/src/main/kotlin/Utilities/DokkaModules.kt
index 763e29a9..36704918 100644
--- a/core/src/main/kotlin/Utilities/DokkaModules.kt
+++ b/core/src/main/kotlin/Utilities/DokkaModules.kt
@@ -46,7 +46,6 @@ object StringListType : TypeLiteral<@JvmSuppressWildcards List<String>>()
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(File::class.java).annotatedWith(Names.named("outputDir")).toInstance(File(options.outputDir))
binder.bind<DocumentationOptions>().toInstance(options)