Procházet zdrojové kódy

Removed second panic call as this code could never be reached

Geoffrey Teale před 15 roky
rodič
revize
b3546240e3
1 změnil soubory, kde provedl 0 přidání a 1 odebrání
  1. 0 1
      lib.go

+ 0 - 1
lib.go

@@ -233,7 +233,6 @@ func readRowsFromSheet(Worksheet *XLSXWorksheet, reftable []string) []*Row {
 					ref, error := strconv.Atoi(vval)
 					if error != nil {
 						panic(error)
-						panic(fmt.Sprintf("Invalid reference in Excel Cell (not found in sharedStrings.xml) - the reference was %v\n", rawcell.V.Data))
 					}
 					cell.data = reftable[ref]
 				} else {