adamsaghy commented on code in PR #4109:
URL: https://github.com/apache/fineract/pull/4109#discussion_r1807761996
##########
fineract-progressive-loan/src/main/java/org/apache/fineract/portfolio/loanproduct/calc/ProgressiveEMICalculator.java:
##########
@@ -48,18 +49,25 @@
@DependsOn("moneyHelper")
public final class ProgressiveEMICalculator implements EMICalculator {
+ private MathContext mc;
+
private static final BigDecimal DIVISOR_100 = new BigDecimal("100");
private static final BigDecimal ONE_WEEK_IN_DAYS = BigDecimal.valueOf(7);
+ @Override
+ public void setMathContext(final MathContext mc) {
Review Comment:
We dont need this. EmiCalculator always work with
`ProgressiveLoanInterestScheduleModel` and it already has the MathContext
--
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]