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 +}