Skip to content

Commit

Permalink
fix(:core:common): correct package names to resolve import issues (#2755
Browse files Browse the repository at this point in the history
)
  • Loading branch information
biplab1 authored Feb 3, 2025
1 parent c759137 commit bed6f8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
*/
package org.mifospay.core.common
package org.mifos.mobile.core.common

import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.catch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* See https://github.com/openMF/mobile-mobile/blob/master/LICENSE.md
*/
package org.mifospay.core.common
package org.mifos.mobile.core.common

import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.transformWhile
Expand Down Expand Up @@ -62,7 +62,7 @@ fun <T1, T2, R> combineResults(
dataState1 is DataState.Loading || dataState2 is DataState.Loading -> DataState.Loading

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

0 comments on commit bed6f8d

Please sign in to comment.