Skip to content

Commit

Permalink
Fix issue with indirect references in stamping mode
Browse files Browse the repository at this point in the history
DEV-1963
  • Loading branch information
pavel-alay committed Apr 15, 2019
1 parent a0f5702 commit e855ec3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ protected void close(Map<String, String> moreInfo) throws IOException {
if (oldInfo != null) {
for (Object element : oldInfo.getKeys()) {
PdfName key = (PdfName) element;
PdfObject value = PdfReader.getPdfObject(oldInfo.get(key));
PdfObject value = oldInfo.get(key);
newInfo.put(key, value);
}
}
Expand Down

0 comments on commit e855ec3

Please sign in to comment.