@@ -361,7 +361,7 @@ void testIsInWhenPresent() {
361
361
IsInWhenPresent <Integer > filtered = cond .filter (i -> i == 1 );
362
362
IsInWhenPresent <Integer > mapped = filtered .map (i -> null );
363
363
assertThat (mapped .isEmpty ()).isTrue ();
364
- assertThat (mapped .values ().toList ()).isEmpty ();;
364
+ assertThat (mapped .values ().toList ()).isEmpty ();
365
365
}
366
366
367
367
@ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -386,7 +386,7 @@ void testIsInCaseInsensitiveWhenPresent() {
386
386
IsInCaseInsensitiveWhenPresent <String > filtered = cond .filter (i -> i .equals ("FRED" ));
387
387
IsInCaseInsensitiveWhenPresent <String > mapped = filtered .map (i -> null );
388
388
assertThat (mapped .isEmpty ()).isTrue ();
389
- assertThat (mapped .values ().toList ()).isEmpty ();;
389
+ assertThat (mapped .values ().toList ()).isEmpty ();
390
390
}
391
391
392
392
@ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -411,7 +411,7 @@ void testIsNotInWhenPresent() {
411
411
IsNotInWhenPresent <Integer > filtered = cond .filter (i -> i == 1 );
412
412
IsNotInWhenPresent <Integer > mapped = filtered .map (i -> null );
413
413
assertThat (mapped .isEmpty ()).isTrue ();
414
- assertThat (mapped .values ().toList ()).isEmpty ();;
414
+ assertThat (mapped .values ().toList ()).isEmpty ();
415
415
}
416
416
417
417
@ SuppressWarnings ("DataFlowIssue" ) // we are deliberately passing nulls into non-null methods for testing
@@ -436,6 +436,6 @@ void testIsNotInCaseInsensitiveWhenPresent() {
436
436
IsNotInCaseInsensitiveWhenPresent <String > filtered = cond .filter (i -> i .equals ("FRED" ));
437
437
IsNotInCaseInsensitiveWhenPresent <String > mapped = filtered .map (i -> null );
438
438
assertThat (mapped .isEmpty ()).isTrue ();
439
- assertThat (mapped .values ().toList ()).isEmpty ();;
439
+ assertThat (mapped .values ().toList ()).isEmpty ();
440
440
}
441
441
}
0 commit comments