Skip to content

Commit

Permalink
fix Fixed export result set issue (#4792)
Browse files Browse the repository at this point in the history
  • Loading branch information
aiceflower authored Jul 21, 2023
1 parent d349093 commit 92a2ca3
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public class StorageExcelWriter extends ExcelFsWriter {
protected DataType[] types;
protected int rowPoint;
protected int columnCounter;
protected Map<String, CellStyle> styles;
private boolean isFlush;
private ByteArrayOutputStream os;
protected Map<String, CellStyle> styles = new HashMap<>();
private boolean isFlush = true;
private ByteArrayOutputStream os = new ByteArrayOutputStream();
private ByteArrayInputStream is;

public StorageExcelWriter(
Expand Down

0 comments on commit 92a2ca3

Please sign in to comment.