Skip to content

Commit 91d96e7

Browse files
committed
Run spring-javaformat:apply
1 parent bded8e6 commit 91d96e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/springframework/retry/policy/ExpressionRetryPolicy.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)