Skip to content

Commit 11f285b

Browse files
committed
Merge branch '2.2.x' into 2.3.x
Closes gh-24403
2 parents 06671aa + 6ee1db7 commit 11f285b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/integration/IntegrationMetricsAutoConfigurationTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import org.junit.jupiter.api.Test;
2222

2323
import org.springframework.boot.actuate.autoconfigure.integration.IntegrationGraphEndpointAutoConfiguration;
24-
import org.springframework.boot.actuate.autoconfigure.metrics.amqp.RabbitMetricsAutoConfiguration;
2524
import org.springframework.boot.actuate.autoconfigure.metrics.test.MetricsRun;
2625
import org.springframework.boot.autoconfigure.AutoConfigurations;
2726
import org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration;
@@ -30,7 +29,7 @@
3029
import static org.assertj.core.api.Assertions.assertThat;
3130

3231
/**
33-
* Tests for {@link RabbitMetricsAutoConfiguration}.
32+
* Tests for {@link IntegrationMetricsAutoConfiguration}.
3433
*
3534
* @author Artem Bilan
3635
*/

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/servlet/WebMvcAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@ static class CustomExceptionHandlerExceptionResolver {
11081108
private int exceptionResolvers = 0;
11091109

11101110
@Bean
1111-
WebMvcRegistrations webMvcRegistrationsHandlerAdapter() {
1111+
WebMvcRegistrations webMvcRegistrationsExceptionResolver() {
11121112
return new WebMvcRegistrations() {
11131113

11141114
@Override

spring-boot-project/spring-boot-docs/src/docs/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6247,7 +6247,7 @@ For instance, it is possible to customize the name of the table for the JDBC sto
62476247
For setting the timeout of the session you can use the configprop:spring.session.timeout[] property.
62486248
If that property is not set, the auto-configuration falls back to the value of configprop:server.servlet.session.timeout[].
62496249

6250-
You can take control over Spring Session's configuration using `@Enable*HttpSession` (Servlet) or `@Enable@WebSession` (Reactive).
6250+
You can take control over Spring Session's configuration using `@Enable*HttpSession` (Servlet) or `@Enable*WebSession` (Reactive).
62516251
This will cause the auto-configuration to back off.
62526252
Spring Session can then be configured using the annotation's attributes rather than the previously described configuration properties.
62536253

spring-boot-project/spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/JarFileWrapperTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void wrapperMustNotImplementClose() {
152152
}
153153

154154
@Test
155-
void streamDelegatestoParent() {
155+
void streamDelegatesToParent() {
156156
this.wrapper.stream();
157157
this.parent.verify(Call.STREAM);
158158
}

0 commit comments

Comments
 (0)