mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Nullability fixes for AtomicReference variables
Closes gh-35514 Signed-off-by: Manu Sridharan <msridhar@gmail.com>
This commit is contained in:
committed by
Sébastien Deleuze
parent
051adf267f
commit
e834a3a80c
+1
-1
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user