Skip to content

Commit 72e94fa

Browse files
committed
minor change
1 parent a556358 commit 72e94fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/multipart/MultipartDownloaderSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public void onNext(AsyncResponseTransformer<GetObjectResponse, GetObjectResponse
120120
throw new NullPointerException("onNext must not be called with null asyncResponseTransformer");
121121
}
122122

123-
int nextPartToGet = completedParts.get() + 1;
123+
int nextPartToGet = completedParts.get() + 1;
124124

125125
synchronized (lock) {
126126
if (totalParts != null && nextPartToGet > totalParts) {

0 commit comments

Comments
 (0)