Skip to content

Commit

Permalink
Update CopyToSXSSFUtil.java (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Sep 28, 2024
1 parent 67919e8 commit 8f5becd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public static SXSSFWorkbook copyToSXSSF(final InputStream inputStream) throws Ex
CellUtil.copyCell(cellInput, cellOutput, cellCopyPolicy, cellCopyContext);
}
}
//this loop only works with POI 5.2.3
//this loop only works with POI 5.2.3 and above
for (Hyperlink hyperlink : sheetInput.getHyperlinkList()) {
sheetOutput.addHyperlink(((XlsxHyperlink)hyperlink).createXSSFHyperlink());
}
Expand Down

0 comments on commit 8f5becd

Please sign in to comment.