Skip to content

Commit 9ad9c56

Browse files
committed
cleanup
1 parent 474111b commit 9ad9c56

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,4 +317,4 @@ public SplitResult<ResponseT, ResponseT> split(SplittingTransformerConfiguration
317317
res -> res.supportsNonSerial(true)
318318
.publisher(new FileAsyncResponseTransformerPublisher(this)));
319319
}
320-
}
320+
}

core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/async/FileSubscriberTckTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import org.reactivestreams.tck.TestEnvironment;
3434
import software.amazon.awssdk.core.internal.async.FileAsyncResponseTransformer.FileSubscriber;
3535

36-
3736
/**
3837
* TCK verification test for {@link FileSubscriber}.
3938
*/

services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/progress/ContentRangeParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ static Stream<Arguments> testRange() {
6767
);
6868
}
6969

70-
}
70+
}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ public class DownloadObjectHelper {
3232

3333
private final S3AsyncClient s3AsyncClient;
3434
private final long bufferSizeInBytes;
35-
private final int maxInFlight;
35+
private final int maxInFlightParts;
3636

37-
public DownloadObjectHelper(S3AsyncClient s3AsyncClient, long bufferSizeInBytes, int maxInFlight) {
37+
public DownloadObjectHelper(S3AsyncClient s3AsyncClient, long bufferSizeInBytes, int maxInFlightParts) {
3838
this.s3AsyncClient = s3AsyncClient;
3939
this.bufferSizeInBytes = bufferSizeInBytes;
40-
this.maxInFlight = maxInFlight;
40+
this.maxInFlightParts = maxInFlightParts;
4141
}
4242

4343
public <T> CompletableFuture<T> downloadObject(
@@ -54,7 +54,7 @@ public <T> CompletableFuture<T> downloadObject(
5454
return downloadPartsSerially(getObjectRequest, split);
5555
}
5656

57-
return downloadPartsNonSerially(getObjectRequest, split, maxInFlight);
57+
return downloadPartsNonSerially(getObjectRequest, split, maxInFlightParts);
5858

5959
}
6060

0 commit comments

Comments
 (0)