Skip to content

Commit e8ae18a

Browse files
committed
Polish
See gh-24837
1 parent 9343633 commit e8ae18a

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
@@ -8460,7 +8460,7 @@ The following example shows how to use the `ConditionEvaluationReportLoggingList
84608460
[source,java,indent=0]
84618461
----
84628462
@Test
8463-
public void autoConfigTest {
8463+
void autoConfigTest() {
84648464
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
84658465
LogLevel.INFO);
84668466
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)