Nullability fixes for AtomicReference variables

Closes gh-35514
Signed-off-by: Manu Sridharan <msridhar@gmail.com>
This commit is contained in:
Manu Sridharan
2025-09-19 16:31:54 -07:00
committed by Sébastien Deleuze
parent 051adf267f
commit e834a3a80c
8 changed files with 10 additions and 9 deletions
@@ -54,7 +54,7 @@ class DefaultMvcResult implements MvcResult {
private @Nullable Exception resolvedException;
private final AtomicReference<Object> asyncResult = new AtomicReference<>(RESULT_NONE);
private final AtomicReference<@Nullable Object> asyncResult = new AtomicReference<>(RESULT_NONE);
private @Nullable CountDownLatch asyncDispatchLatch;