File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/springframework/retry/policy Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,8 +130,8 @@ public boolean canRetry(RetryContext context) {
130130 private static Expression getExpression (String expression ) {
131131 if (isTemplate (expression )) {
132132 logger .warn ("#{...} syntax is not required for run-time expression in this policy "
133- + "and is deprecated in favor of a simple expression string." +
134- "Consider to remove SpEL template tokens around expression: '" + expression + "'" );
133+ + "and is deprecated in favor of a simple expression string."
134+ + "Consider to remove SpEL template tokens around expression: '" + expression + "'" );
135135 return new SpelExpressionParser ().parseExpression (expression , PARSER_CONTEXT );
136136 }
137137 return new SpelExpressionParser ().parseExpression (expression );
You can’t perform that action at this time.
0 commit comments