Simplify stream chain operations

See gh-39259
This commit is contained in:
Tobias Lippert
2024-01-21 20:06:20 +01:00
committed by Phillip Webb
parent 15f1e8536b
commit 7f4aaacf42
4 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ class IncompatibleConfigurationFailureAnalyzer extends AbstractFailureAnalyzer<I
@Override
protected FailureAnalysis analyze(Throwable rootFailure, IncompatibleConfigurationException cause) {
String action = String.format("Review the docs for %s and change the configured values.",
cause.getIncompatibleKeys().stream().collect(Collectors.joining(", ")));
String.join(", ", cause.getIncompatibleKeys()));
return new FailureAnalysis(cause.getMessage(), action, cause);
}