Skip to content

Commit

Permalink
Update labapi/src/main/java/com/microsoft/identity/internal/test/laba…
Browse files Browse the repository at this point in the history
…pi/ApiClient.java

Co-authored-by: Shahzaib <[email protected]>
  • Loading branch information
fadidurah and shahzaibj authored Oct 11, 2024
1 parent 0601fec commit 786964f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -863,8 +863,8 @@ public <T> ApiResponse<T> execute(Call call, Type returnType) throws ApiExceptio
// Wait for a bit
try {
Thread.sleep(LAB_API_RETRY_WAIT);
} catch (final InterruptedException e2) {
e2.printStackTrace();
} catch (final InterruptedException exception) {
exception.printStackTrace();
}
final Response response = call.execute();
final T data = handleResponse(response, returnType);
Expand Down

0 comments on commit 786964f

Please sign in to comment.