Add missing @Nullable annotation

Issue: SPR-15540
This commit is contained in:
Sebastien Deleuze
2017-06-02 14:13:31 +02:00
parent 74fb2645fd
commit 90df7dd279

View File

@@ -109,7 +109,7 @@ public class ReactiveAdapterRegistry {
/**
* Get the adapter for the given reactive type.
*/
public ReactiveAdapter getAdapter(Class<?> reactiveType) {
public ReactiveAdapter getAdapter(@Nullable Class<?> reactiveType) {
return getAdapter(reactiveType, null);
}