CE-881 - Checkstyle

This commit is contained in:
2024-03-28 08:54:09 -05:00
parent cc3f630659
commit 82e66a159a

View File

@ -56,9 +56,11 @@ public class StreamedPoiSheetWriter
*******************************************************************************/ *******************************************************************************/
public void beginSheet() throws IOException public void beginSheet() throws IOException
{ {
writer.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + writer.write("""
"<worksheet xmlns=\"http://schemas.openxmlformats.org/spreadsheetml/2006/main\">"); <?xml version="1.0" encoding="UTF-8"?>
writer.write("<sheetData>\n"); <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
<sheetData>""");
} }
@ -68,8 +70,9 @@ public class StreamedPoiSheetWriter
*******************************************************************************/ *******************************************************************************/
public void endSheet() throws IOException public void endSheet() throws IOException
{ {
writer.write("</sheetData>"); writer.write("""
writer.write("</worksheet>"); </sheetData>
</worksheet>""");
} }