Skip to content

Commit 3f0f462

Browse files
committed
Fix formatting
1 parent 6abae08 commit 3f0f462

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

auto-configurations/common/spring-ai-autoconfigure-retry/src/main/java/org/springframework/ai/retry/autoconfigure/SpringAiRetryAutoConfiguration.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ public boolean hasError(@NonNull ClientHttpResponse response) throws IOException
8686
return response.getStatusCode().isError();
8787
}
8888

89-
// On purposes commented out so that the code can compile both with Spring 6 and Spring 7
89+
// On purposes commented out so that the code can compile both with Spring 6
90+
// and Spring 7
9091
// @Override
9192
@SuppressWarnings("removal")
9293
public void handleError(@NonNull ClientHttpResponse response) throws IOException {

spring-ai-retry/src/main/java/org/springframework/ai/retry/RetryUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public void handleError(URI url, HttpMethod method, @NonNull ClientHttpResponse
5757
handleError(response);
5858
}
5959

60-
// On purposes commented out so that the code can compile both with Spring 6 and Spring 7
60+
// On purposes commented out so that the code can compile both with Spring 6 and
61+
// Spring 7
6162
// @Override
6263
@SuppressWarnings("removal")
6364
public void handleError(@NonNull ClientHttpResponse response) throws IOException {

0 commit comments

Comments
 (0)