Skip to content

Commit 4e398bc

Browse files
committed
chore: wrap a long line to fix a warning from CheckStyle.
Should be in aa81300 commit.
1 parent 2d19dfe commit 4e398bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/main/java/ru/mystamps/web/support/beanvalidation/ImageFileValidator.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,10 @@ public boolean isValid(MultipartFile file, ConstraintValidatorContext ctx) {
150150
}
151151

152152
if (LOG.isDebugEnabled()) {
153-
LOG.debug("Looks like file isn't an image. First bytes: {}", formatBytes(firstPart));
153+
LOG.debug(
154+
"Looks like file isn't an image. First bytes: {}",
155+
formatBytes(firstPart)
156+
);
154157
}
155158
return false;
156159

0 commit comments

Comments
 (0)