From e1d16e9f364b0e728e45cffecea6ba14d6771487 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 3 Oct 2022 22:40:59 +0530 Subject: [PATCH] refactor(coroutine-utils): suppress false-positive `InjectDispatcher` lint --- .../dev/msfjarvis/claw/util/coroutines/DispatcherProvider.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coroutine-utils/src/main/kotlin/dev/msfjarvis/claw/util/coroutines/DispatcherProvider.kt b/coroutine-utils/src/main/kotlin/dev/msfjarvis/claw/util/coroutines/DispatcherProvider.kt index b156c60c..2af64c92 100644 --- a/coroutine-utils/src/main/kotlin/dev/msfjarvis/claw/util/coroutines/DispatcherProvider.kt +++ b/coroutine-utils/src/main/kotlin/dev/msfjarvis/claw/util/coroutines/DispatcherProvider.kt @@ -1,3 +1,5 @@ +@file:Suppress("InjectDispatcher") // False-positive + package dev.msfjarvis.claw.util.coroutines import javax.inject.Inject