Skip to content

Commit 1745928

Browse files
committed
PDFBOX-5957: Sonar fix
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1923841 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5fb947b commit 1745928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pdfbox/src/main/java/org/apache/pdfbox/pdfparser/PDFStreamParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ private boolean hasNoFollowingBinData() throws IOException
335335
int endOpIdx = -1;
336336
String s = "";
337337

338-
LOG.debug("String after EI: '{}'", new String(binCharTestArr));
338+
LOG.debug("String after EI: '{}'", () -> new String(binCharTestArr));
339339

340340
if (readBytes > 0)
341341
{

0 commit comments

Comments
 (0)