Skip to content

Commit 5296701

Browse files
committed
Polish
1 parent 142c183 commit 5296701

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/AutoConfigurationReportEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public Report(ConditionEvaluationReport report) {
7676
this.negativeMatches = new LinkedMultiValueMap<String, MessageAndCondition>();
7777
for (Map.Entry<String, ConditionAndOutcomes> entry : report
7878
.getConditionAndOutcomesBySource().entrySet()) {
79-
dunno(entry.getValue().isFullMatch() ? this.positiveMatches
79+
add(entry.getValue().isFullMatch() ? this.positiveMatches
8080
: this.negativeMatches, entry.getKey(), entry.getValue());
8181

8282
}
@@ -85,7 +85,7 @@ public Report(ConditionEvaluationReport report) {
8585
}
8686
}
8787

88-
private void dunno(MultiValueMap<String, MessageAndCondition> map, String source,
88+
private void add(MultiValueMap<String, MessageAndCondition> map, String source,
8989
ConditionAndOutcomes conditionAndOutcomes) {
9090
String name = ClassUtils.getShortName(source);
9191
for (ConditionAndOutcome conditionAndOutcome : conditionAndOutcomes) {

0 commit comments

Comments
 (0)