This is 3.0.2

This commit is contained in:
Magnus Ulf
2019-01-06 12:54:47 +01:00
parent cde14c7100
commit 25f83034be
2 changed files with 3 additions and 3 deletions

View File

@@ -32,9 +32,9 @@ public abstract class MoneyMixinAbstract implements MoneyMixin
// OK! I'll have to calculate :P
int factor = (int) Math.round(Math.pow(10, fractionalDigits));
amount = amount * factor;
amount = Math.ceil(amount);
amount = moneyCeil(amount);
amount = amount / factor;
return amount;
}