Skip to content

Commit b7753d2

Browse files
committed
PDFBOX-5660: sonar fix
git-svn-id: https://svn.apache.org/repos/asf/pdfbox/trunk@1927208 13f79535-47bb-0310-9956-ffa450edef68
1 parent c39c6fd commit b7753d2

File tree

1 file changed

+1
-1
lines changed
  • pdfbox/src/main/java/org/apache/pdfbox/util

1 file changed

+1
-1
lines changed

pdfbox/src/main/java/org/apache/pdfbox/util/Hex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ public static byte[] decodeHex(String s)
236236
else
237237
{
238238
String hexByte = s.substring(i, i + 2);
239-
LOG.error("Can't parse " + hexByte + ", aborting decode");
239+
LOG.error("Can't parse {}, aborting decode", hexByte);
240240
}
241241
i += 2;
242242
}

0 commit comments

Comments
 (0)