Skip to content

Commit 08526d6

Browse files
committed
Fix date format (no longer localized though)
1 parent 4dfef9d commit 08526d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/comphenix/rema1000/io/excel/ExcelWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private void writeTransactions(WorkbookStyle workbookStyle, Worksheet sheet, Lis
8383
private WorkbookStyle createWorkbookStyle() {
8484
return new WorkbookStyle(
8585
(sheet, r, c) -> sheet.style(r, c).bold().set(),
86-
(sheet, r, c) -> sheet.style(r, c).format(Integer.toString(0x16)).set()
86+
(sheet, r, c) -> sheet.style(r, c).format("yyyy-mm-dd hh:mm:ss").set()
8787
);
8888
}
8989
}

0 commit comments

Comments
 (0)