Skip to content

Commit 95c401e

Browse files
committed
Merge pull request #42340 from izeye
* pr/42340: Polish Closes gh-42340
2 parents 7eaf6d1 + a0d1c10 commit 95c401e

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/r2dbc/R2dbcObservationAutoConfiguration.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public class R2dbcObservationAutoConfiguration {
5050

5151
/**
5252
* {@code @Order} value of the observation customizer.
53+
* @since 3.4.0
5354
*/
5455
public static final int R2DBC_PROXY_OBSERVATION_CUSTOMIZER_ORDER = 0;
5556

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/graphql/GraphQlProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public static class Websocket {
220220
/**
221221
* Maximum idle period before a server keep-alive ping is sent to client.
222222
*/
223-
private Duration keepAlive = null;
223+
private Duration keepAlive;
224224

225225
public String getPath() {
226226
return this.path;

spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ static class CustomizerConfiguration {
182182

183183
@Bean
184184
@ConditionalOnBean(Customizer.class)
185-
SpringLiquibaseCustomizer customizerSpringLiquibaseCustomizer(Customizer<Liquibase> customizer) {
185+
SpringLiquibaseCustomizer springLiquibaseCustomizer(Customizer<Liquibase> customizer) {
186186
return (springLiquibase) -> springLiquibase.setCustomizer(customizer);
187187
}
188188

spring-boot-project/spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/MainMethodTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ void nestedMainMethod() throws Exception {
6666
}
6767

6868
@Test // gh-39733
69-
void vaiJarLauncher() throws Exception {
69+
void viaJarLauncher() throws Exception {
7070
FakeJarLauncher.action = (args) -> Valid.main(args);
7171
MainMethod method = new TestThread(FakeJarLauncher::main).test();
7272
Method expectedMain = Valid.class.getMethod("main", String[].class);

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/using/devtools.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ If this causes issues, you can diagnose the problem by using the `spring.devtool
243243
By default, any open project in your IDE is loaded with the "`restart`" classloader, and any regular `.jar` file is loaded with the "`base`" classloader.
244244
The same is true if you use `mvn spring-boot:run` or `gradle bootRun`: the project containing your `@SpringBootApplication` is loaded with the "`restart`" classloader, and everything else with the "`base`" classloader.
245245
The classpath is printed on the console when you start the app, which can help to identify any problematic entries.
246-
Classes used reflectively, especially annotations, can be loaded into the parent (fixed) classloader on startup before the application classes which uses them, and this might lead to them not being detected by Spring in the application.
246+
Classes used reflectively, especially annotations, can be loaded into the parent (fixed) classloader on startup before the application classes which use them, and this might lead to them not being detected by Spring in the application.
247247

248248
You can instruct Spring Boot to load parts of your project with a different classloader by creating a `META-INF/spring-devtools.properties` file.
249249
The `spring-devtools.properties` file can contain properties prefixed with `restart.exclude` and `restart.include`.

spring-boot-project/spring-boot-testcontainers/src/dockerTest/java/org/springframework/boot/testcontainers/service/connection/kafka/ApacheKafkaContainerConnectionDetailsFactoryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import static org.assertj.core.api.Assertions.assertThat;
4242

4343
/**
44-
* Tests for {@link ConfluentKafkaContainerConnectionDetailsFactory}.
44+
* Tests for {@link ApacheKafkaContainerConnectionDetailsFactory}.
4545
*
4646
* @author Moritz Halbritter
4747
* @author Andy Wilkinson

0 commit comments

Comments
 (0)