Skip to content

Commit 90df7dd

Browse files
committed
Add missing @nullable annotation
Issue: SPR-15540
1 parent 74fb264 commit 90df7dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public void registerReactiveType(ReactiveTypeDescriptor descriptor,
109109
/**
110110
* Get the adapter for the given reactive type.
111111
*/
112-
public ReactiveAdapter getAdapter(Class<?> reactiveType) {
112+
public ReactiveAdapter getAdapter(@Nullable Class<?> reactiveType) {
113113
return getAdapter(reactiveType, null);
114114
}
115115

0 commit comments

Comments
 (0)