Skip to content

Commit

Permalink
Merge pull request #382 from liaochong/Hotfix/4.3.0.RC1
Browse files Browse the repository at this point in the history
Hotfix/4.3.0.rc1
  • Loading branch information
liaochong committed Sep 20, 2022
2 parents 608ce14 + eec1703 commit d8fa549
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.github.liaochong</groupId>
<artifactId>myexcel</artifactId>
<version>4.3.0.RC</version>
<version>4.3.0.RC1</version>
<packaging>jar</packaging>

<name>myexcel</name>
Expand All @@ -22,8 +22,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<poi.version>5.2.2</poi.version>
<jsoup.version>1.15.2</jsoup.version>
<poi.version>5.2.3</poi.version>
<jsoup.version>1.15.3</jsoup.version>
<lombok.version>1.18.22</lombok.version>
<beetl.version>3.9.0.RELEASE</beetl.version>
<velocity.version>2.3</velocity.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public abstract class AbstractExcelFactory implements ExcelFactory {
/**
* 暂存单元格,由后续行认领
*/
private final List<Td> stagingTds = new LinkedList<>();
protected List<Td> stagingTds = new LinkedList<>();

private CreationHelper createHelper;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import java.io.File;
import java.io.IOException;
import java.nio.file.NoSuchFileException;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Objects;
Expand Down Expand Up @@ -252,6 +253,7 @@ private void setTdOfTable(Table table, Sheet sheet) {
this.createRow(tr, sheet);
tr.tdList = null;
}
stagingTds = new LinkedList<>();
table.trList = null;
this.setColWidth(colMaxWidthMap, sheet, maxColIndex);
}
Expand Down

0 comments on commit d8fa549

Please sign in to comment.