mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
CE-881 - Checkstyle
This commit is contained in:
@ -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>""");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user