adamsaghy commented on code in PR #4971: URL: https://github.com/apache/fineract/pull/4971#discussion_r2362058226
########## fineract-provider/src/main/java/org/apache/fineract/organisation/monetary/service/CurrencyWritePlatformServiceJpaRepositoryImpl.java: ########## @@ -23,18 +23,24 @@ import java.util.List; import java.util.Set; import lombok.RequiredArgsConstructor; +import org.apache.fineract.organisation.monetary.data.CurrencyCreateRequest; +import org.apache.fineract.organisation.monetary.data.CurrencyCreateResponse; import org.apache.fineract.organisation.monetary.data.CurrencyUpdateRequest; import org.apache.fineract.organisation.monetary.data.CurrencyUpdateResponse; import org.apache.fineract.organisation.monetary.domain.ApplicationCurrency; import org.apache.fineract.organisation.monetary.domain.ApplicationCurrencyRepositoryWrapper; import org.apache.fineract.organisation.monetary.domain.OrganisationCurrency; import org.apache.fineract.organisation.monetary.domain.OrganisationCurrencyRepository; import org.apache.fineract.organisation.monetary.exception.CurrencyInUseException; +import org.apache.fineract.organisation.monetary.exception.InvalidCurrencyException; +import org.apache.fineract.organisation.monetary.mapper.CurrencyMapper; import org.apache.fineract.portfolio.charge.service.ChargeReadPlatformService; import org.apache.fineract.portfolio.loanproduct.service.LoanProductReadPlatformService; import org.apache.fineract.portfolio.savings.service.SavingsProductReadPlatformService; +import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +@Service Review Comment: We dont need this. We are using Configuration classes to instantiate this bean. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
