diff --git a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/SpotlessPlugin.kt b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/SpotlessPlugin.kt index 4b712908..460d1fd7 100644 --- a/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/SpotlessPlugin.kt +++ b/build-logic/src/main/kotlin/dev/msfjarvis/claw/gradle/SpotlessPlugin.kt @@ -50,6 +50,6 @@ class SpotlessPlugin : Plugin { } private companion object { - private const val KTFMT_VERSION = "0.44" + private const val KTFMT_VERSION = "0.45" } } diff --git a/core/src/main/kotlin/dev/msfjarvis/claw/core/coroutines/DispatcherProvider.kt b/core/src/main/kotlin/dev/msfjarvis/claw/core/coroutines/DispatcherProvider.kt index d1711e24..f83e8bb5 100644 --- a/core/src/main/kotlin/dev/msfjarvis/claw/core/coroutines/DispatcherProvider.kt +++ b/core/src/main/kotlin/dev/msfjarvis/claw/core/coroutines/DispatcherProvider.kt @@ -5,7 +5,6 @@ * https://opensource.org/licenses/MIT. */ @file:Suppress("InjectDispatcher") // False-positive - package dev.msfjarvis.claw.core.coroutines import javax.inject.Inject