We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c684d4c commit e34dcc3Copy full SHA for e34dcc3
1 file changed
core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/async/FileAsyncResponseTransformer.java
@@ -303,8 +303,8 @@ public String toString() {
303
@Override
304
public SplitResult<ResponseT, ResponseT> split(SplittingTransformerConfiguration splitConfig) {
305
if (configuration.fileWriteOption() == CREATE_OR_APPEND_TO_EXISTING) {
306
- return AsyncResponseTransformer.super.
307
- split(splitConfig)
+ return AsyncResponseTransformer.super
+ .split(splitConfig)
308
.copy(res -> res.supportsNonSerial(false));
309
}
310
return AsyncResponseTransformer.super
0 commit comments