File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
auth/src/main/java/software/amazon/awssdk/auth/signer
core/src/main/java/software/amazon/awssdk/core/async Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public final class SignerConstant {
25
25
public static final String AWS4_SIGNING_ALGORITHM = "AWS4-HMAC-SHA256" ;
26
26
27
27
/** Seconds in a week, which is the max expiration time Sig-v4 accepts. */
28
- public static final long PRESIGN_URL_MAX_EXPIRATION_SECONDS = 60 * 60 * 24 * 7 ;
28
+ public static final long PRESIGN_URL_MAX_EXPIRATION_SECONDS = 60L * 60 * 24 * 7 ;
29
29
30
30
public static final String X_AMZ_CONTENT_SHA256 = "x-amz-content-sha256" ;
31
31
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ public void subscribe(Subscriber<? super ByteBuffer> s) {
55
55
try {
56
56
s .onSubscribe (
57
57
new Subscription () {
58
- boolean done = false ;
58
+ private boolean done = false ;
59
59
60
60
@ Override
61
61
public void request (long n ) {
You can’t perform that action at this time.
0 commit comments