Skip to content

Commit

Permalink
Merge pull request IQSS#9757 from IQSS/develop
Browse files Browse the repository at this point in the history
Add export loop fix, 2nd serve for v5.14 release
  • Loading branch information
kcondon authored Aug 4, 2023
2 parents f0bcc8b + 509671c commit 9f4ddbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2086,7 +2086,7 @@ private static void createFileDscr(XMLStreamWriter xmlw, JsonArray fileDetails)

if (fileJson.containsKey("tabularTags")) {
JsonArray tags = fileJson.getJsonArray("tabularTags");
for (int j = 0; j < tags.size(); i++) {
for (int j = 0; j < tags.size(); j++) {
xmlw.writeStartElement("notes");
writeAttribute(xmlw, "level", LEVEL_FILE);
writeAttribute(xmlw, "type", NOTE_TYPE_TAG);
Expand Down

0 comments on commit 9f4ddbb

Please sign in to comment.