Skip to content

Commit c0e2e98

Browse files
committed
fix broken import
1 parent a22ddf5 commit c0e2e98

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

core/src/appleMain/kotlin/io/tolgee/TolgeeApple.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package io.tolgee
22

3-
import com.rickclephas.kmp.nativecoroutines.NativeCoroutines
43
import de.comahe.i18n4k.createLocale
54
import io.tolgee.common.fromRes
65
import io.tolgee.model.TolgeeMessageParams
@@ -44,7 +43,6 @@ data class TolgeeApple internal constructor(
4443
* @param table The name of the table where the key is searched for, or null to use the default table.
4544
* @return A flow that emits localized strings corresponding to the given key.
4645
*/
47-
@NativeCoroutines
4846
fun tFlow(key: String, default: String?, table: String? = null): Flow<String> = flow {
4947
emit(
5048
getLocalizedStringFromBundle(
@@ -71,7 +69,6 @@ data class TolgeeApple internal constructor(
7169
* @param args A variable number of arguments for formatting the localized string.
7270
* @return A flow that emits localized and formatted string values corresponding to the given key and arguments.
7371
*/
74-
@NativeCoroutines
7572
fun tFlow(key: String, default: String?, table: String? = null, vararg args: Any): Flow<String> = flow {
7673
emit(getLocalizedStringFromBundleFormatted(bundleRes, key, default, table, *args))
7774

0 commit comments

Comments
 (0)