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