remove unnecessary log output

This commit is contained in:
Liu Ming
2015-10-30 16:03:44 +08:00
parent ddee605f8f
commit 6130495e06
2 changed files with 0 additions and 6 deletions

View File

@@ -4,7 +4,6 @@ import (
"bytes"
"encoding/binary"
"io"
"log"
"unicode/utf16"
)
@@ -136,7 +135,6 @@ func (wb *WorkBook) parseBof(buf io.ReadSeeker, b *bof, pre *bof, offset_pre int
binary.Read(buf_item, binary.LittleEndian, &f.Head)
f.str = wb.get_string(buf_item, f.Head.Size)
wb.addFormat(f)
log.Println(f.Head.Index, f.str)
}
return
}