mirror of
https://github.com/DanilaFe/abacus
synced 2024-12-23 07:50:09 -08:00
Remove unused default value from PreciseNumber
This commit is contained in:
parent
eac4ce8600
commit
f4508a8c5a
|
@ -20,7 +20,10 @@ public class PreciseNumber implements NumberInterface{
|
||||||
*/
|
*/
|
||||||
static final PreciseNumber TEN = new PreciseNumber(BigDecimal.TEN);
|
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.
|
* Constructs a precise number from the given string.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user