Skip to content

Commit fcdc139

Browse files
committed
Checkstyle fix
1 parent 3e80bdc commit fcdc139

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

http-clients/apache5-client/src/main/java/software/amazon/awssdk/http/apache5/internal/utils/CancelOnInterruptWrapper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ public ResultT get() throws InterruptedException, ExecutionException {
7676
// attempting to cancel() the future when InterruptedException is thrown. If the the cancel() is unsuccessful (i.e.
7777
// the future is completed either successfully or exceptionally), then get the result if present and return it.
7878
@Override
79-
public ResultT get(long timeout, TimeUnit unit)
80-
throws InterruptedException, ExecutionException, TimeoutException {
79+
public ResultT get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
8180
try {
8281
return f.get(timeout, unit);
8382
} catch (InterruptedException ie) {

0 commit comments

Comments
 (0)