Skip to content

Commit

Permalink
errorprone :: ParameterMissingNullable
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed May 25, 2024
1 parent 906d8c0 commit ed08209
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/emissary/place/ComparisonPlaceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nullable;

import static org.junit.jupiter.api.Assertions.assertThrows;

Expand Down Expand Up @@ -91,7 +92,7 @@ void testProcessHDPlaceBChanges() throws Exception {
testComparisonPlace(PROCESSHD_PLACE_B_CHANGES, logMessage);
}

private static void testComparisonPlace(final String configuration, final String logMessage) throws Exception {
private static void testComparisonPlace(final String configuration, final @Nullable String logMessage) throws Exception {
try (LogbackTester logbackTester = new LogbackTester(ComparisonPlace.class.getName())) {
final ComparisonPlace comparisonPlace = new ComparisonPlace(null, null, configuration);
final byte[] data = configuration.getBytes(StandardCharsets.UTF_8);
Expand Down

0 comments on commit ed08209

Please sign in to comment.