Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Jan 15, 2021
1 parent 9343633 commit e8ae18a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -8460,7 +8460,7 @@ The following example shows how to use the `ConditionEvaluationReportLoggingList
[source,java,indent=0]
----
@Test
public void autoConfigTest {
void autoConfigTest() {
ConditionEvaluationReportLoggingListener initializer = new ConditionEvaluationReportLoggingListener(
LogLevel.INFO);
ApplicationContextRunner contextRunner = new ApplicationContextRunner()
Expand Down
Expand Up @@ -286,7 +286,7 @@ private Integer getLocalPort(Connector connector) {
.invokeMethod(ReflectionUtils.findMethod(connector.getClass(), "getLocalPort"), connector);
}
catch (Exception ex) {
logger.info("could not determine port ( " + ex.getMessage() + ")");
logger.info("could not determine port (" + ex.getMessage() + ")");
}
return 0;
}
Expand Down

0 comments on commit e8ae18a

Please sign in to comment.