Skip to content

Commit

Permalink
skip structures, #293
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelligent2013 committed Oct 31, 2024
1 parent 4e2e292 commit fe1ad7c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/java/org/metanorma/fop/annotations/Annotation.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,12 @@ private void fixAnnotationTags(COSArray oArray, COSObject parentObject, int leve
}
}
}

COSArray oA_K = (COSArray) oArrayItem.getItem(COSName.K);
fixAnnotationTags(oA_K, oArrayItem, ++level);
try {
COSArray oA_K = (COSArray) oArrayItem.getItem(COSName.K);
fixAnnotationTags(oA_K, oArrayItem, ++level);
} catch (Exception e) {
//
}
}
}
}
Expand Down

0 comments on commit fe1ad7c

Please sign in to comment.