Sonar fixes
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 3m58s
All checks were successful
SonarQube Scan / SonarQube Trigger (push) Successful in 3m58s
This commit is contained in:
@@ -3,8 +3,8 @@ package ch.dissem.yaep.ui.common
|
||||
import ch.dissem.yaep.domain.Game
|
||||
import io.github.oshai.kotlinlogging.KotlinLogging
|
||||
import kotlinx.coroutines.CoroutineScope
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlin.coroutines.CoroutineContext
|
||||
import kotlin.io.path.Path
|
||||
import kotlin.io.path.createFile
|
||||
import kotlin.io.path.isDirectory
|
||||
@@ -15,8 +15,8 @@ import kotlin.time.ExperimentalTime
|
||||
private val log = KotlinLogging.logger {}
|
||||
|
||||
@OptIn(ExperimentalTime::class)
|
||||
actual fun CoroutineScope.logGame(game: Game) {
|
||||
launch(Dispatchers.IO) {
|
||||
actual fun CoroutineScope.logGame(game: Game, dispatcher: CoroutineContext) {
|
||||
launch(dispatcher) {
|
||||
val dirName = """${System.getProperty("user.home")}/.yaep"""
|
||||
val dir = Path(dirName)
|
||||
if (dir.isDirectory()) {
|
||||
|
||||
Reference in New Issue
Block a user