From 11bd97f631c2d78c9479ae7d2ea0601a37ca1fec Mon Sep 17 00:00:00 2001 From: Syer10 Date: Wed, 15 Feb 2023 03:44:17 +0000 Subject: [PATCH] Automatic Lint --- .../kotlin/ca/gosyer/jui/data/FlowIOResponseConverter.kt | 2 +- .../kotlin/ca/gosyer/jui/data/IosFlowIOResponseConverter.kt | 2 +- .../kotlin/ca/gosyer/jui/data/JvmFlowIOResponseConverter.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/src/commonMain/kotlin/ca/gosyer/jui/data/FlowIOResponseConverter.kt b/data/src/commonMain/kotlin/ca/gosyer/jui/data/FlowIOResponseConverter.kt index 7dee634a..b3ba36c5 100644 --- a/data/src/commonMain/kotlin/ca/gosyer/jui/data/FlowIOResponseConverter.kt +++ b/data/src/commonMain/kotlin/ca/gosyer/jui/data/FlowIOResponseConverter.kt @@ -44,4 +44,4 @@ class FlowIOResponseConverter @Inject constructor(private val json: Json) : Resp } } -expect suspend fun decodeType(response: HttpResponse, typeInfo: TypeInfo, json: Json): Any \ No newline at end of file +expect suspend fun decodeType(response: HttpResponse, typeInfo: TypeInfo, json: Json): Any diff --git a/data/src/iosMain/kotlin/ca/gosyer/jui/data/IosFlowIOResponseConverter.kt b/data/src/iosMain/kotlin/ca/gosyer/jui/data/IosFlowIOResponseConverter.kt index 9e2df7c6..83922b8d 100644 --- a/data/src/iosMain/kotlin/ca/gosyer/jui/data/IosFlowIOResponseConverter.kt +++ b/data/src/iosMain/kotlin/ca/gosyer/jui/data/IosFlowIOResponseConverter.kt @@ -14,4 +14,4 @@ import kotlinx.serialization.serializer actual suspend fun decodeType(response: HttpResponse, typeInfo: TypeInfo, json: Json): Any { return json.decodeFromString(serializer(typeInfo.kotlinType!!), response.bodyAsText())!! -} \ No newline at end of file +} diff --git a/data/src/jvmMain/kotlin/ca/gosyer/jui/data/JvmFlowIOResponseConverter.kt b/data/src/jvmMain/kotlin/ca/gosyer/jui/data/JvmFlowIOResponseConverter.kt index 3d7980bf..b182d8d0 100644 --- a/data/src/jvmMain/kotlin/ca/gosyer/jui/data/JvmFlowIOResponseConverter.kt +++ b/data/src/jvmMain/kotlin/ca/gosyer/jui/data/JvmFlowIOResponseConverter.kt @@ -13,4 +13,4 @@ import kotlinx.serialization.json.Json actual suspend fun decodeType(response: HttpResponse, typeInfo: TypeInfo, json: Json): Any { return response.body(typeInfo) -} \ No newline at end of file +}