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() {
263
263
* If content length is null, it is sent after the entire content for that chunk is buffered.
264
264
* In this case, the configured {@code maxMemoryUsageInBytes} must be larger than or equal to {@code chunkSizeInBytes}.
265
265
*
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.
267
267
* @param maxMemoryUsageInBytes the max memory the SDK will use to buffer the content
268
268
* @return SplitAsyncRequestBodyResult
269
269
*/
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ private SplitAsyncRequestBodyResponse(SdkPublisher<AsyncRequestBody> asyncReques
33
33
this .future = Validate .paramNotNull (future , "future" );
34
34
}
35
35
36
- public static SplitAsyncRequestBodyResponse create (SdkPublisher <AsyncRequestBody > asyncRequestBody , CompletableFuture <Void > future ) {
36
+ public static SplitAsyncRequestBodyResponse create (SdkPublisher <AsyncRequestBody > asyncRequestBody ,
37
+ CompletableFuture <Void > future ) {
37
38
return new SplitAsyncRequestBodyResponse (asyncRequestBody , future );
38
39
}
39
40
You can’t perform that action at this time.
0 commit comments