Skip to content

Commit

Permalink
optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
liaochong committed Nov 14, 2024
1 parent 2f90486 commit 6e62b0a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<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.5</poi.version>
<poi.version>5.3.0</poi.version>
<jsoup.version>1.16.2</jsoup.version>
<lombok.version>1.18.22</lombok.version>
<beetl.version>3.15.4.RELEASE</beetl.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ public void reset(T object, FieldDefinition fieldDefinition, String val, int row
this.val = val;
this.rowNum = rowNum;
this.colNum = colNum;
if (readConfig == null) {
this.readConfig = new SaxExcelReader.ReadConfig<>(-1);
}
}

public void revert() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Tr {
/**
* 最大宽度
*/
public Map<Integer, Integer> colWidthMap;
public Map<Integer, Integer> colWidthMap = Collections.emptyMap();
/**
* 是否可见
*/
Expand Down

0 comments on commit 6e62b0a

Please sign in to comment.