You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of #32913, Most of MockHttpServletRequestBuilder has moved to an abstract class that can only be built with an HttpMethod whereas previously both an HttpMethod and an URI were mandatory.
Moving URI as nullable means it can be inherited from a parent builder if it is not set yet. This isn't taken into account and can be a problem if you need to create a separate builder instance from one whose URI has been populated already.
The text was updated successfully, but these errors were encountered:
As of #32913, Most of
MockHttpServletRequestBuilder
has moved to anabstract
class that can only be built with anHttpMethod
whereas previously both anHttpMethod
and anURI
were mandatory.Moving
URI
as nullable means it can be inherited from a parent builder if it is not set yet. This isn't taken into account and can be a problem if you need to create a separate builder instance from one whose URI has been populated already.The text was updated successfully, but these errors were encountered: