frogs пре 13 година
родитељ
комит
80a577b592
2 измењених фајлова са 1 додато и 2 уклоњено
  1. BIN
      .DS_Store
  2. 1 2
      lib.go

+ 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)