mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Fix wrong access modifier in MockMvc standalone setup
Issue: SPR-15248
This commit is contained in:
+2
-2
@@ -197,8 +197,8 @@ public class StandaloneMockMvcBuilder extends AbstractMockMvcBuilder<StandaloneM
|
||||
/**
|
||||
* Set a ContentNegotiationManager.
|
||||
*/
|
||||
protected StandaloneMockMvcBuilder setContentNegotiationManager(ContentNegotiationManager contentNegotiationManager) {
|
||||
this.contentNegotiationManager = contentNegotiationManager;
|
||||
public StandaloneMockMvcBuilder setContentNegotiationManager(ContentNegotiationManager manager) {
|
||||
this.contentNegotiationManager = manager;
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user