Skip to content

Commit 5ee2f12

Browse files
committed
Formatting
1 parent 0870bac commit 5ee2f12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

log4j-core/src/main/java/org/apache/logging/log4j/core/util/internal/instant/InstantPatternDynamicFormatter.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -705,8 +705,7 @@ static class SecondPatternSequence extends PatternSequence {
705705
final int maxSecondDigits = 2;
706706
if (secondDigits > maxSecondDigits) {
707707
final String message = String.format(
708-
"More than %d `s` pattern letters are not supported, found: %d",
709-
maxSecondDigits, secondDigits);
708+
"More than %d `s` pattern letters are not supported, found: %d", maxSecondDigits, secondDigits);
710709
throw new IllegalArgumentException(message);
711710
}
712711
final int maxFractionalDigits = 9;

0 commit comments

Comments
 (0)