Skip to content

Commit 1a2a3d6

Browse files
committed
Merge branch '2.4.x'
2 parents 2de8c49 + e8ae18a commit 1a2a3d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -8442,7 +8442,7 @@ The following example shows how to use the `ConditionEvaluationReportLoggingList
84428442
[source,java,indent=0]
84438443
----
84448444
@Test
8445-
public void autoConfigTest {
8445+
void autoConfigTest() {
84468446
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
84478447
LogLevel.INFO);
84488448
ApplicationContextRunner contextRunner = new ApplicationContextRunner()

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyWebServer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ private Integer getLocalPort(Connector connector) {
286286
.invokeMethod(ReflectionUtils.findMethod(connector.getClass(), "getLocalPort"), connector);
287287
}
288288
catch (Exception ex) {
289-
logger.info("could not determine port ( " + ex.getMessage() + ")");
289+
logger.info("could not determine port (" + ex.getMessage() + ")");
290290
}
291291
return 0;
292292
}

0 commit comments

Comments
 (0)