Browse Source

fix bug

fix bug
frogs 13 năm trước cách đây
mục cha
commit
da67e49700
2 tập tin đã thay đổi với 1 bổ sung2 xóa
  1. BIN
      .DS_Store
  2. 1 2
      lib.go

BIN
.DS_Store


+ 1 - 2
lib.go

@@ -202,13 +202,12 @@ func makeRowFromSpan(spans string) *Row {
 // get the max column 
 // return the cells of columns
 func makeRowFromRaw(rawrow xlsxRow) *Row {
-	var error error
 	var upper int
 	var row *Row
 	var cell *Cell
 
 	row = new(Row)
-	upper := 0
+	upper = 0
 
 	for _, rawcell := range rawrow.C {
 		x, _, error := getCoordsFromCellIDString(rawcell.R)