Geoffrey J. Teale 11 år sedan
förälder
incheckning
a57e267ebc
1 ändrade filer med 6 tillägg och 2 borttagningar
  1. 6 2
      cell.go

+ 6 - 2
cell.go

@@ -118,8 +118,12 @@ func (c *Cell) GetStyle() Style {
 
 
 // The number format string is returnable from a cell.
 // The number format string is returnable from a cell.
 func (c *Cell) GetNumberFormat() string {
 func (c *Cell) GetNumberFormat() string {
-	if c.styles == nil { return "" }
-	if c.styles.CellXfs == nil { return "" }
+	if c.styles == nil {
+		return ""
+	}
+	if c.styles.CellXfs == nil {
+		return ""
+	}
 	var numberFormat string = ""
 	var numberFormat string = ""
 	if c.styleIndex > -1 && c.styleIndex <= len(c.styles.CellXfs) {
 	if c.styleIndex > -1 && c.styleIndex <= len(c.styles.CellXfs) {
 		xf := c.styles.CellXfs[c.styleIndex]
 		xf := c.styles.CellXfs[c.styleIndex]