Skip to content

Commit

Permalink
wrong loop var being incremented
Browse files Browse the repository at this point in the history
  • Loading branch information
qqmyers committed Aug 4, 2023
1 parent b215f56 commit 7c9f062
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 7c9f062

Please sign in to comment.