Skip to content

Commit fe39086

Browse files
committed
Fix Javadoc and build
1 parent 79df02a commit fe39086

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
*/

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)