no $ in dollar format

This commit is contained in:
Denis Molony 2016-07-31 21:11:26 +10:00
parent 89b355cffe
commit dfd60dec78

View File

@ -4,7 +4,7 @@ import java.text.DecimalFormat;
class Cell implements Comparable<Cell>, Value
{
private static final DecimalFormat nf = new DecimalFormat ("$#####0.00");
private static final DecimalFormat nf = new DecimalFormat ("#####0.00");
final Address address;
private final Sheet parent;