|
@@ -144,8 +144,8 @@ public class ExcelFillUtils {
|
|
|
Row row = sheet.getRow(i);
|
|
|
for (int j = 0; j < row.getPhysicalNumberOfCells(); j++) {
|
|
|
Cell cell = row.getCell(j);
|
|
|
- cell.setCellType(CellType.STRING);
|
|
|
if (!Objects.isNull(cell)) {
|
|
|
+ cell.setCellType(CellType.STRING);
|
|
|
Pattern pattern = Pattern.compile(FILL_EXPRESSION_REGEX);
|
|
|
Matcher matcher = pattern.matcher(cell.getStringCellValue());
|
|
|
Map<String, Object> expressionCellMap = new HashMap<>();
|