Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/src/test/java/org/dhatim/fastexcel/MemoryUsageE2E.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private void write(OutputStream out) throws IOException {
sheet.value(r, c, valueFor(r, c));
}
if (r % FLUSH_EVERY_NR_OR_ROWS == 0) {
sheet.flush();
sheet.initDocumentAndFlush();
}
}
}
Expand Down
Loading