Skip to content

Commit

Permalink
Arlington. Update getcontainsDRFontAny in GFAInteractiveForm
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Oct 11, 2023
1 parent c264448 commit 04cf1bd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public COSObject getDRFontValue() {
@Override
public Boolean getcontainsDRFontAny() {
COSObject DRFont = getDRFontValue();
return DRFont.getKeySet() != null && !DRFont.getKeySet().isEmpty();
return DRFont != null && DRFont.getKeySet() != null && !DRFont.getKeySet().isEmpty();
}

}

0 comments on commit 04cf1bd

Please sign in to comment.