diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-23 17:21:10 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-23 17:21:10 +0100 |
commit | 0e35c83f3b1cca083516c4276b1d4e71638c664e (patch) | |
tree | d59e0606713a94b28434a0f2bd7c8f7a4eab438d | |
parent | 64a86842ae06c7119cca4ef7c66b024f771ab088 (diff) | |
download | dokka-0e35c83f3b1cca083516c4276b1d4e71638c664e.tar.gz dokka-0e35c83f3b1cca083516c4276b1d4e71638c664e.tar.bz2 dokka-0e35c83f3b1cca083516c4276b1d4e71638c664e.zip |
Add missing injection annotation
-rw-r--r-- | core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt b/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt index 1897c53b..b1e3ff91 100644 --- a/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt +++ b/core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt @@ -149,7 +149,7 @@ open class KotlinWebsiteOutputBuilder(to: StringBuilder, class KotlinWebsiteFormatService @Inject constructor(locationService: LocationService, signatureGenerator: LanguageService, - impliedPlatforms: List<String>) + @Named(impliedPlatformsName) impliedPlatforms: List<String>) : JekyllFormatService(locationService, signatureGenerator, "html", impliedPlatforms) { override fun createOutputBuilder(to: StringBuilder, location: Location) = |