Skip to content

Commit

Permalink
Remove redundant cast
Browse files Browse the repository at this point in the history
  • Loading branch information
gaul committed May 12, 2024
1 parent 705a1cb commit f4e986f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private HttpRequest sign(String method, String container, String name, GetOption
request.addHeader(entry.getKey(), entry.getValue());
}

return (HttpRequest) request
return request
.addQueryParam("Expires", String.valueOf(expires))
.addQueryParam("GoogleAccessId", creds.get().identity)
.addQueryParam("Signature", signature)
Expand Down

0 comments on commit f4e986f

Please sign in to comment.