Skip to content

Commit

Permalink
fix spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
itsPronay committed Jan 26, 2025
1 parent 538d75d commit d5e5e19
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class LoanDaoHelper @Inject constructor(
* Read All LoanRepaymentRequest from Database ascending Order of TimeStamp
*
* @return Flow<List<LoanRepaymentRequest>>
</LoanRepaymentRequest> */
</LoanRepaymentRequest> */
fun readAllLoanRepaymentTransaction(): Flow<List<LoanRepaymentRequest>> {
return loanDao.readAllLoanRepaymentTransaction()
}
Expand Down Expand Up @@ -141,7 +141,7 @@ class LoanDaoHelper @Inject constructor(
*
* @param loanId loan Id of the LoanRepayment
* @return List<LoanRepaymentRequest>
</LoanRepaymentRequest></LoanRepaymentRequest> */
</LoanRepaymentRequest></LoanRepaymentRequest> */
// TODO recheck logic in DatabaseHelperLoan.deleteAndUpdateLoanRepayments()
suspend fun deleteAndUpdateLoanRepayments(loanId: Int): Flow<List<LoanRepaymentRequest>> {
loanDao.deleteLoanRepaymentByLoanId(loanId)
Expand Down Expand Up @@ -173,7 +173,7 @@ class LoanDaoHelper @Inject constructor(
* and return the list of PaymentTypeOption
*
* @return List<PaymentTypeOption>
</PaymentTypeOption> */
</PaymentTypeOption> */

val getAllPaymentTypeOption: Flow<List<PaymentTypeOption>> = loanDao.getPaymentTypeOptions()

Expand Down

0 comments on commit d5e5e19

Please sign in to comment.