Skip to content

Commit

Permalink
fix checkstyle 'Parameter message should be final'
Browse files Browse the repository at this point in the history
  • Loading branch information
fupgang committed Mar 11, 2024
1 parent bc9d3fd commit 3305ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/de/siegmar/logbackgelf/GelfEncoderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ void originHostDefaultToLocalHostNameIfEmpty(final String configuredHostname) {

@ParameterizedTest
@ValueSource(strings = { " \t ", "", "\n" })
void blankShortMessage(String message) {
void blankShortMessage(final String message) {
encoder.start();

final LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
Expand Down

0 comments on commit 3305ba1

Please sign in to comment.