Skip to content

Commit

Permalink
Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffengreiner committed Jan 14, 2025
1 parent 5bf9162 commit e67aa53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public byte[] getContent() {
}

try (Workbook workbook = new XSSFWorkbook();
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()) {

CellStyle readOnlyHeaderStyle = XLSXTemplateHelper.createReadOnlyHeaderCellStyle(workbook);
CellStyle boldStyle = createBoldCellStyle(workbook);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ private static void setAutoWidth(Sheet sheet) {
@Override
public byte[] getContent() {
try (Workbook workbook = new XSSFWorkbook();
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();) {
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream()) {

CellStyle readOnlyHeaderStyle = XLSXTemplateHelper.createReadOnlyHeaderCellStyle(workbook);
CellStyle boldStyle = createBoldCellStyle(workbook);
Expand Down

0 comments on commit e67aa53

Please sign in to comment.