From fc7e0549f23d0cf801d1d09c4b450a71bfdb1610 Mon Sep 17 00:00:00 2001 From: Dewan Tawsif Date: Wed, 7 Aug 2024 14:15:17 +0600 Subject: [PATCH] Lint --- .../kotlin/dagger/hilt/flexible/compiler/DecoratorProcessor.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flexible-hilt-compiler/src/main/kotlin/dagger/hilt/flexible/compiler/DecoratorProcessor.kt b/flexible-hilt-compiler/src/main/kotlin/dagger/hilt/flexible/compiler/DecoratorProcessor.kt index 2953d8b..ef8d7ec 100644 --- a/flexible-hilt-compiler/src/main/kotlin/dagger/hilt/flexible/compiler/DecoratorProcessor.kt +++ b/flexible-hilt-compiler/src/main/kotlin/dagger/hilt/flexible/compiler/DecoratorProcessor.kt @@ -69,7 +69,7 @@ class DecoratorProcessor(private val codeGenerator: CodeGenerator) : SymbolProce val itemClassName = declaration.toClassName() val interfaceName = itemClassName.simpleNames.joinToString("_") - FileSpec.builder("${OutputPackagePrefix}.$itemPackageName", interfaceName) + FileSpec.builder("$OutputPackagePrefix.$itemPackageName", interfaceName) .addFileComment( FormattedGeneratedMessage, LocalDateTime.now().format(GeneratedDateTimeFormatter),