From 36b7990d6ba1036823abf7a01ec8cf74509d4910 Mon Sep 17 00:00:00 2001 From: xuri Date: Mon, 15 Feb 2021 00:09:35 +0800 Subject: lint issue fixed and new formula function: ATAN, AVERAGE, AVERAGEA, CONCAT, CONCATENATE, COUNT, COUNTBLANK, MAX --- rows.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'rows.go') diff --git a/rows.go b/rows.go index 75bea47..7b4f998 100644 --- a/rows.go +++ b/rows.go @@ -1,4 +1,4 @@ -// Copyright 2016 - 2020 The excelize Authors. All rights reserved. Use of +// Copyright 2016 - 2021 The excelize Authors. All rights reserved. Use of // this source code is governed by a BSD-style license that can be found in // the LICENSE file. // @@ -60,7 +60,6 @@ type Rows struct { err error curRow, totalRow, stashRow int sheet string - rows []xlsxRow f *File decoder *xml.Decoder } @@ -165,7 +164,6 @@ func rowXMLHandler(rowIterator *rowXMLIterator, xmlElement *xml.StartElement) { val, _ := colCell.getValueFrom(rowIterator.rows.f, rowIterator.d) rowIterator.columns = append(appendSpace(blank, rowIterator.columns), val) } - return } // Rows returns a rows iterator, used for streaming reading data for a -- cgit v1.2.1