1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-09-05 23:37:09 -07:00

Remove unused default value from PreciseNumber

This commit is contained in:
Danila Fedorin 2017-07-28 14:55:01 -07:00
parent eac4ce8600
commit f4508a8c5a

View File

@ -20,7 +20,10 @@ public class PreciseNumber implements NumberInterface{
*/
static final PreciseNumber TEN = new PreciseNumber(BigDecimal.TEN);
BigDecimal value = new BigDecimal("0");
/**
* The value of the PreciseNumber.
*/
BigDecimal value;
/**
* Constructs a precise number from the given string.