Browse Source

Merge 2c74112e3c into aae9c61ab6

pull/3949/merge
721806280 6 months ago committed by GitHub
parent
commit
dae116f3d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      easyexcel-core/src/main/java/com/alibaba/excel/util/ConverterUtils.java

2
easyexcel-core/src/main/java/com/alibaba/excel/util/ConverterUtils.java

@ -48,7 +48,7 @@ public class ConverterUtils {
index++; index++;
} }
index++; index++;
if (cellData.getType() == CellDataTypeEnum.EMPTY) { if (cellData.getType() == null || cellData.getType() == CellDataTypeEnum.EMPTY) {
stringMap.put(key, null); stringMap.put(key, null);
continue; continue;
} }

Loading…
Cancel
Save