From 0e35c83f3b1cca083516c4276b1d4e71638c664e Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 23 Feb 2017 17:21:10 +0100 Subject: Add missing injection annotation --- core/src/main/kotlin/Formats/KotlinWebsiteFormatService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) + @Named(impliedPlatformsName) impliedPlatforms: List) : JekyllFormatService(locationService, signatureGenerator, "html", impliedPlatforms) { override fun createOutputBuilder(to: StringBuilder, location: Location) = -- cgit