We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc96bb8 commit b2abf98Copy full SHA for b2abf98
validation-model/src/main/java/org/verapdf/gf/model/impl/cos/GFCosDocument.java
@@ -306,7 +306,7 @@ public Boolean getSuspects() {
306
return null;
307
}
308
COSBase markInfo = markInfoObject.getDirectBase();
309
- if (markInfo.getType() == COSObjType.COS_DICT) {
+ if (markInfo != null && markInfo.getType() == COSObjType.COS_DICT) {
310
return markInfo.getBooleanKey(ASAtom.SUSPECTS);
311
312
LOGGER.log(Level.WARNING,
0 commit comments