File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
pdfbox/src/main/java/org/apache/pdfbox/pdmodel/fdf Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ public FDFAnnotationStamp(Element element) throws IOException
115115 }
116116 if (base64EncodedAppearance != null && !base64EncodedAppearance .isEmpty ())
117117 {
118- LOG .debug ("Decoded XML: {}" , new String (decodedAppearanceXML ));
118+ LOG .debug ("Decoded XML: {}" , () -> new String (decodedAppearanceXML ));
119119
120120 Document stampAppearance = XMLUtil
121121 .parse (new ByteArrayInputStream (decodedAppearanceXML ));
@@ -275,7 +275,7 @@ else if ("ASCII".equals(childEncodingAttr))
275275
276276 private COSArray parseArrayElement (Element arrayEl ) throws IOException
277277 {
278- LOG .debug ("Parse {} Array" , arrayEl .getAttribute ("KEY" ));
278+ LOG .debug ("Parse {} Array" , () -> arrayEl .getAttribute ("KEY" ));
279279 COSArray array = new COSArray ();
280280
281281 NodeList nodeList = arrayEl .getChildNodes ();
You can’t perform that action at this time.
0 commit comments