mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 05:49:04 +00:00
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:
committed by
Rossen Stoyanchev
parent
ac5694b150
commit
f4ef5cd451
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user