Skip to content
Snippets Groups Projects
Commit b0a3c9f5 authored by Tomasz Walkowiak's avatar Tomasz Walkowiak
Browse files

Code reafctor

parent b5f1ff2c
No related merge requests found
Pipeline #2568 passed with stage
in 1 minute and 44 seconds
...@@ -119,7 +119,7 @@ public class JSON2XLSX { ...@@ -119,7 +119,7 @@ public class JSON2XLSX {
private void putAllSentences(XSSFWorkbook workBook) { private void putAllSentences(XSSFWorkbook workBook) {
for (String key : allSentences.keySet()) { for (String key : allSentences.keySet()) {
XSSFSheet sheet = workBook.createSheet("key"); XSSFSheet sheet = workBook.createSheet(key);
int col = 2; int col = 2;
int RowNum = 0; int RowNum = 0;
for (String skey : allSentences.getJSONObject(key).keySet()) for (String skey : allSentences.getJSONObject(key).keySet())
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment