DefaultServerHttpRequestBuilder.java (spring-framework-5.3.23) | : | DefaultServerHttpRequestBuilder.java (spring-framework-5.3.24) | ||
---|---|---|---|---|
/* | /* | |||
* Copyright 2002-2021 the original author or authors. | * Copyright 2002-2022 the original author or authors. | |||
* | * | |||
* Licensed under the Apache License, Version 2.0 (the "License"); | * Licensed under the Apache License, Version 2.0 (the "License"); | |||
* you may not use this file except in compliance with the License. | * you may not use this file except in compliance with the License. | |||
* You may obtain a copy of the License at | * You may obtain a copy of the License at | |||
* | * | |||
* https://www.apache.org/licenses/LICENSE-2.0 | * https://www.apache.org/licenses/LICENSE-2.0 | |||
* | * | |||
* Unless required by applicable law or agreed to in writing, software | * Unless required by applicable law or agreed to in writing, software | |||
* distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | |||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |||
skipping to change at line 94 | skipping to change at line 94 | |||
} | } | |||
@Override | @Override | |||
public ServerHttpRequest.Builder uri(URI uri) { | public ServerHttpRequest.Builder uri(URI uri) { | |||
this.uri = uri; | this.uri = uri; | |||
return this; | return this; | |||
} | } | |||
@Override | @Override | |||
public ServerHttpRequest.Builder path(String path) { | public ServerHttpRequest.Builder path(String path) { | |||
Assert.isTrue(path.startsWith("/"), "The path does not have a lea ding slash."); | Assert.isTrue(path.startsWith("/"), () -> "The path does not have a leading slash: " + path); | |||
this.uriPath = path; | this.uriPath = path; | |||
return this; | return this; | |||
} | } | |||
@Override | @Override | |||
public ServerHttpRequest.Builder contextPath(String contextPath) { | public ServerHttpRequest.Builder contextPath(String contextPath) { | |||
this.contextPath = contextPath; | this.contextPath = contextPath; | |||
return this; | return this; | |||
} | } | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added |