Merge branch '6.1.x'

This commit is contained in:
Stéphane Nicoll
2024-04-23 15:34:49 +02:00
7 changed files with 29 additions and 29 deletions

View File

@@ -44,7 +44,7 @@ import org.springframework.util.StringUtils;
* <li>{@code **} matches zero or more <em>path segments</em> until the end of the path</li>
* <li><code>{spring}</code> matches a <em>path segment</em> and captures it as a variable named "spring"</li>
* <li><code>{spring:[a-z]+}</code> matches the regexp {@code [a-z]+} against a path segment
* and captures it a path variable named "spring"</li>
* and captures it as a path variable named "spring"</li>
* <li><code>{*spring}</code> matches zero or more <em>path segments</em> until the end of the path
* and captures it as a variable named "spring"</li>
* </ul>

View File

@@ -238,7 +238,7 @@ class RestTemplateObservationTests {
@Nullable
Observation currentObservation;
public ObservationErrorHandler(TestObservationRegistry observationRegistry) {
ObservationErrorHandler(TestObservationRegistry observationRegistry) {
this.observationRegistry = observationRegistry;
}