Fix broken RequestMappingHandlerAdapter setter
RequestMappingHandlerAdapter.setReactiveRegistry() doesn't actually set the value appropriately. FYI: I found this using lgtm.com https://lgtm.com/projects/g/spring-projects/spring-framework/alerts/?mode=list
This commit is contained in:
parent
ac5694b150
commit
f4ef5cd451
|
@ -430,7 +430,7 @@ public class RequestMappingHandlerAdapter extends AbstractHandlerMethodAdapter
|
|||
*/
|
||||
public void setReactiveRegistry(ReactiveAdapterRegistry reactiveRegistry) {
|
||||
Assert.notNull(reactiveRegistry, "ReactiveAdapterRegistry is required");
|
||||
this.reactiveRegistry = this.reactiveRegistry;
|
||||
this.reactiveRegistry = reactiveRegistry;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue