GetCSV refactoring - fixed issue

This commit is contained in:
Miriam Baglioni 2021-08-12 18:10:10 +02:00
parent f0845e9865
commit 335a824e34
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class EXCELParser {
XSSFSheet sheet = wb.getSheet(sheetName); XSSFSheet sheet = wb.getSheet(sheetName);
if (sheetName == null) { if (sheet == null) {
throw new IllegalArgumentException("Sheet name " + sheetName + " not present in current file"); throw new IllegalArgumentException("Sheet name " + sheetName + " not present in current file");
} }