Skip to content

Commit

Permalink
visibility modifier fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lepicekmichal committed Apr 29, 2024
1 parent b0eb204 commit e6bb613
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ abstract class HubCommunication {

protected abstract val receivedInvocations: SharedFlow<HubMessage.Invocation>

protected val resultProviderRegistry: MutableSet<String> = mutableSetOf()
private val resultProviderRegistry: MutableSet<String> = mutableSetOf()

protected abstract val logger: Logger

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import io.ktor.utils.io.core.*
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.ExperimentalCoroutinesApi
import kotlinx.coroutines.IO
import kotlinx.coroutines.SupervisorJob
import kotlinx.coroutines.cancel
import kotlinx.coroutines.cancelChildren
Expand Down

0 comments on commit e6bb613

Please sign in to comment.