mirror of
https://github.com/DanilaFe/abacus
synced 2025-01-08 15:29:25 -08:00
Remove unused default value from PreciseNumber
This commit is contained in:
parent
556a72f946
commit
c3bb3d7d3f
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user