Skip to content

Commit cd3d2ad

Browse files
author
Dennis Labordus
committed
Fixed code smell.
Signed-off-by: Dennis Labordus <[email protected]>
1 parent a63104d commit cd3d2ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/src/main/java/org/lfenergy/compas/scl/validator/common/NsdocFinder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private NsdocFile convertToNsdocFile(File file) {
5656
nsdocFile.setChecksum(calculateChecksum(file));
5757
return nsdocFile;
5858
} catch (Exception exp) {
59-
LOGGER.warn("Error loading NSDoc File '" + file.getName() + "'. Skipping file.", exp);
59+
LOGGER.warn("Error loading NSDoc File '{}'. Skipping file.", file.getName(), exp);
6060
return null;
6161
}
6262
}

0 commit comments

Comments
 (0)