When I want to add two BigDecimal objects together
public void addBalanceWallet(BigDecimal balanceWallet) {
this.balanceWallet.add(balanceWallet);
}
There is no effect. Additionally, the IDE shows
Why can't I add these two objects together?