Remove unused default value from PreciseNumber

This commit is contained in:
Danila Fedorin 2017-07-28 14:55:01 -07:00
parent 556a72f946
commit c3bb3d7d3f
1 changed files with 4 additions and 1 deletions

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.