Skip to content

Commit 22edfa9

Browse files
biplab1revanthkumarJ
authored andcommitted
fix(core:data): correct package names and import statements (openMF#2758)
1 parent 33adc99 commit 22edfa9

40 files changed

+51
-51
lines changed

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/AccountsRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.client.ClientAccounts
14-
import org.mifospay.core.common.DataState
1515

1616
interface AccountsRepository {
1717

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/BeneficiaryRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.beneficiary.Beneficiary
1415
import org.mifos.mobile.core.model.entity.beneficiary.BeneficiaryPayload
1516
import org.mifos.mobile.core.model.entity.beneficiary.BeneficiaryUpdatePayload
1617
import org.mifos.mobile.core.model.entity.templates.beneficiary.BeneficiaryTemplate
17-
import org.mifospay.core.common.DataState
1818

1919
interface BeneficiaryRepository {
2020

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/ClientChargeRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.Charge
1415
import org.mifos.mobile.core.model.entity.Page
15-
import org.mifospay.core.common.DataState
1616

1717
interface ClientChargeRepository {
1818

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/ClientRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.Page
1415
import org.mifos.mobile.core.model.entity.client.Client
15-
import org.mifospay.core.common.DataState
1616

1717
interface ClientRepository {
1818

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/GuarantorRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.guarantor.GuarantorApplicationPayload
1415
import org.mifos.mobile.core.model.entity.guarantor.GuarantorPayload
1516
import org.mifos.mobile.core.model.entity.guarantor.GuarantorTemplatePayload
16-
import org.mifospay.core.common.DataState
1717

1818
interface GuarantorRepository {
1919

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/HomeRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ package org.mifos.mobile.core.data.repository
1111

1212
import io.ktor.client.statement.HttpResponse
1313
import kotlinx.coroutines.flow.Flow
14+
import org.mifos.mobile.core.common.DataState
1415
import org.mifos.mobile.core.model.entity.client.Client
1516
import org.mifos.mobile.core.model.entity.client.ClientAccounts
16-
import org.mifospay.core.common.DataState
1717

1818
interface HomeRepository {
1919

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/LoanRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.accounts.loan.LoanWithAssociations
1415
import org.mifos.mobile.core.model.entity.accounts.loan.LoanWithdraw
1516
import org.mifos.mobile.core.model.entity.templates.loans.LoanTemplate
16-
import org.mifospay.core.common.DataState
1717

1818
interface LoanRepository {
1919

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/NotificationRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.MifosNotification
14-
import org.mifospay.core.common.DataState
1515

1616
interface NotificationRepository {
1717

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/RecentTransactionRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
package org.mifos.mobile.core.data.repository
1111

1212
import kotlinx.coroutines.flow.Flow
13+
import org.mifos.mobile.core.common.DataState
1314
import org.mifos.mobile.core.model.entity.Page
1415
import org.mifos.mobile.core.model.entity.Transaction
15-
import org.mifospay.core.common.DataState
1616

1717
interface RecentTransactionRepository {
1818

core/data/src/commonMain/kotlin/org/mifos/mobile/core/data/repository/ReviewLoanApplicationRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
*/
1010
package org.mifos.mobile.core.data.repository
1111

12+
import org.mifos.mobile.core.common.DataState
1213
import org.mifos.mobile.core.model.entity.payload.LoansPayload
1314
import org.mifos.mobile.core.model.enums.LoanState
14-
import org.mifospay.core.common.DataState
1515

1616
interface ReviewLoanApplicationRepository {
1717

0 commit comments

Comments
 (0)