Browse Source

Merge pull request #5980 in CORE/base-third from bugfix/11.0 to release/11.0

* commit '32b95059adfd487611555f9b9af5494a595c2879':
  BI-105913 BI导出性能问题,valueof的性能比较低,大数据量会比较慢,这是之前10.0定制的内容,修改一下
release/11.0
superman 2 years ago
parent
commit
0f1fe6022d
  1. 4
      fine-poi/src/main/java/com/fr/third/v2/org/apache/poi/xssf/usermodel/XSSFSheet.java

4
fine-poi/src/main/java/com/fr/third/v2/org/apache/poi/xssf/usermodel/XSSFSheet.java

@ -408,10 +408,6 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
// throw IllegalStateException if the argument CellRangeAddress intersects with // throw IllegalStateException if the argument CellRangeAddress intersects with
// a multi-cell array formula defined in this sheet // a multi-cell array formula defined in this sheet
validateArrayFormulas(region); validateArrayFormulas(region);
// Throw IllegalStateException if the argument CellRangeAddress intersects with
// a merged region already in this sheet
validateMergedRegions(region);
} }
CTMergeCells ctMergeCells = worksheet.isSetMergeCells() ? worksheet.getMergeCells() : worksheet.addNewMergeCells(); CTMergeCells ctMergeCells = worksheet.isSetMergeCells() ? worksheet.getMergeCells() : worksheet.addNewMergeCells();

Loading…
Cancel
Save