Skip to content

Commit

Permalink
Deal with Spring Framework deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Jan 11, 2025
1 parent bf338f8 commit 3346ca7
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
import org.junit.platform.commons.util.ReflectionUtils;

import org.springframework.boot.testsupport.BuildOutput;
import org.springframework.http.HttpMethod;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
import org.springframework.util.FileSystemUtils;
Expand Down Expand Up @@ -195,8 +196,12 @@ public boolean hasError(ClientHttpResponse response) throws IOException {
}

@Override
@SuppressWarnings("removal")
public void handleError(ClientHttpResponse response) throws IOException {
}

@Override
public void handleError(URI url, HttpMethod method, ClientHttpResponse response) throws IOException {
}

});
Expand Down

0 comments on commit 3346ca7

Please sign in to comment.