20
0

Remove fmt.Println

This commit is contained in:
Julian Espinel 2018-05-09 21:29:56 -05:00
parent ed8580ddea
commit dac73cf010

View File

@ -1,8 +1,6 @@
package xls
import (
"fmt"
formatter "github.com/extrame/xls/format"
)
@ -17,6 +15,5 @@ type format struct {
func (f *format) Format(val float64, date1904 bool) string {
_, tokens := formatter.Lexer(f.str)
ds := formatter.Parse(tokens)
fmt.Println("=>", val)
return ds.Format(val, date1904)
}