1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Fix consistency with Nullability Usage

Issue gh-18564
This commit is contained in:
Robert Winch
2026-01-22 14:48:05 -06:00
parent ab3298e917
commit d7fbf3673a
20 changed files with 32 additions and 46 deletions
@@ -278,7 +278,7 @@ public class LogoutSpecTests {
private static class InMemorySecurityContextRepository implements ServerSecurityContextRepository {
@Nullable private SecurityContext savedContext;
private @Nullable SecurityContext savedContext;
@Override
public Mono<Void> save(ServerWebExchange exchange, SecurityContext context) {
@@ -291,7 +291,7 @@ public class LogoutSpecTests {
return Mono.justOrEmpty(this.savedContext);
}
@Nullable private SecurityContext getSavedContext() {
private @Nullable SecurityContext getSavedContext() {
return this.savedContext;
}