@@ -361,7 +361,7 @@ void testIsInWhenPresent() {
361361 IsInWhenPresent <Integer > filtered = cond .filter (i -> i == 1 );
362362 IsInWhenPresent <Integer > mapped = filtered .map (i -> null );
363363 assertThat (mapped .isEmpty ()).isTrue ();
364- assertThat (mapped .values ().toList ()).isEmpty ();;
364+ assertThat (mapped .values ().toList ()).isEmpty ();
365365 }
366366
367367 @ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -386,7 +386,7 @@ void testIsInCaseInsensitiveWhenPresent() {
386386 IsInCaseInsensitiveWhenPresent <String > filtered = cond .filter (i -> i .equals ("FRED" ));
387387 IsInCaseInsensitiveWhenPresent <String > mapped = filtered .map (i -> null );
388388 assertThat (mapped .isEmpty ()).isTrue ();
389- assertThat (mapped .values ().toList ()).isEmpty ();;
389+ assertThat (mapped .values ().toList ()).isEmpty ();
390390 }
391391
392392 @ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -411,7 +411,7 @@ void testIsNotInWhenPresent() {
411411 IsNotInWhenPresent <Integer > filtered = cond .filter (i -> i == 1 );
412412 IsNotInWhenPresent <Integer > mapped = filtered .map (i -> null );
413413 assertThat (mapped .isEmpty ()).isTrue ();
414- assertThat (mapped .values ().toList ()).isEmpty ();;
414+ assertThat (mapped .values ().toList ()).isEmpty ();
415415 }
416416
417417 @ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -436,6 +436,6 @@ void testIsNotInCaseInsensitiveWhenPresent() {
436436 IsNotInCaseInsensitiveWhenPresent <String > filtered = cond .filter (i -> i .equals ("FRED" ));
437437 IsNotInCaseInsensitiveWhenPresent <String > mapped = filtered .map (i -> null );
438438 assertThat (mapped .isEmpty ()).isTrue ();
439- assertThat (mapped .values ().toList ()).isEmpty ();;
439+ assertThat (mapped .values ().toList ()).isEmpty ();
440440 }
441441}
0 commit comments