adamsaghy commented on code in PR #4837:
URL: https://github.com/apache/fineract/pull/4837#discussion_r2212791166
##########
fineract-core/src/main/java/org/apache/fineract/portfolio/savings/domain/interest/EndOfDayBalance.java:
##########
@@ -32,17 +32,20 @@ public class EndOfDayBalance {
private final Money openingBalance;
private final Money endOfDayBalance;
private final int numberOfDays;
+ private int decimals;
public static EndOfDayBalance from(final LocalDate date, final Money
openingBalance, final Money endOfDayBalance,
- final int numberOfDays) {
- return new EndOfDayBalance(date, openingBalance, endOfDayBalance,
numberOfDays);
+ final int numberOfDays, final int decimals) {
Review Comment:
what is `decimals`?
--
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]