File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
core/sdk-core/src/main/java/software/amazon/awssdk/core/async Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ static AsyncRequestBody empty() {
263263 * If content length is null, it is sent after the entire content for that chunk is buffered.
264264 * In this case, the configured {@code maxMemoryUsageInBytes} must be larger than or equal to {@code chunkSizeInBytes}.
265265 *
266- * @param chunkSizeInBytes the size for each divided chunk. The last chunk may be smaller of the configured size.
266+ * @param chunkSizeInBytes the size for each divided chunk. The last chunk may be smaller than the configured size.
267267 * @param maxMemoryUsageInBytes the max memory the SDK will use to buffer the content
268268 * @return SplitAsyncRequestBodyResult
269269 */
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ private SplitAsyncRequestBodyResponse(SdkPublisher<AsyncRequestBody> asyncReques
3333 this .future = Validate .paramNotNull (future , "future" );
3434 }
3535
36- public static SplitAsyncRequestBodyResponse create (SdkPublisher <AsyncRequestBody > asyncRequestBody , CompletableFuture <Void > future ) {
36+ public static SplitAsyncRequestBodyResponse create (SdkPublisher <AsyncRequestBody > asyncRequestBody ,
37+ CompletableFuture <Void > future ) {
3738 return new SplitAsyncRequestBodyResponse (asyncRequestBody , future );
3839 }
3940
You can’t perform that action at this time.
0 commit comments