This commit is contained in:
lxyer 2019-06-17 12:57:27 +08:00
parent 28ea42ae9c
commit 73ebd2ceba

View File

@ -314,7 +314,7 @@ public class ExcelKit {
/**
* @author Lxyer 2016/9/21 00:38.
*/
private static List<Map> readExcel(Sheet sheet, int lastRowNum) throws OfficeXmlFileException {
private static List<Map> readExcel(Sheet sheet, int lastRowNum) {
List<Map> list = new ArrayList<>();
if (lastRowNum < 0 || lastRowNum > sheet.getLastRowNum()) {
lastRowNum = sheet.getLastRowNum();