Run spring-javaformat:apply

This commit is contained in:
Artem Bilan
2025-03-27 14:59:04 -04:00
parent bded8e67df
commit 91d96e736c

View File

@@ -130,8 +130,8 @@ public class ExpressionRetryPolicy extends SimpleRetryPolicy implements BeanFact
private static Expression getExpression(String expression) {
if (isTemplate(expression)) {
logger.warn("#{...} syntax is not required for run-time expression in this policy "
+ "and is deprecated in favor of a simple expression string." +
"Consider to remove SpEL template tokens around expression: '" + expression + "'");
+ "and is deprecated in favor of a simple expression string."
+ "Consider to remove SpEL template tokens around expression: '" + expression + "'");
return new SpelExpressionParser().parseExpression(expression, PARSER_CONTEXT);
}
return new SpelExpressionParser().parseExpression(expression);