Skip to content

Commit bed6f8d

Browse files
authored
fix(:core:common): correct package names to resolve import issues (#2755)
1 parent c759137 commit bed6f8d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DataState.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
99
*/
10-
package org.mifospay.core.common
10+
package org.mifos.mobile.core.common
1111

1212
import kotlinx.coroutines.flow.Flow
1313
import kotlinx.coroutines.flow.catch

core/common/src/commonMain/kotlin/org/mifos/mobile/core/common/DataStateExtensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
99
*/
10-
package org.mifospay.core.common
10+
package org.mifos.mobile.core.common
1111

1212
import kotlinx.coroutines.flow.Flow
1313
import kotlinx.coroutines.flow.transformWhile
@@ -62,7 +62,7 @@ fun <T1, T2, R> combineResults(
6262
dataState1 is DataState.Loading || dataState2 is DataState.Loading -> DataState.Loading
6363

6464
// Pending state for everything while any one piece of data is updating.
65-
// Both states are _root_ide_package_.org.mifospay.core.common.Result.Success and have data
65+
// Both states are _root_ide_package_.org.mifos.mobile.core.common.Result.Success and have data
6666
else -> {
6767
@Suppress("UNCHECKED_CAST")
6868
DataState.Success(transform(dataState1.data as T1, dataState2.data as T2))

0 commit comments

Comments
 (0)