Skip to content

Commit a7965d7

Browse files
author
Michael Li
committed
Merging changes and fixing checkstyle issue
2 parents 3b2508d + 329566c commit a7965d7

File tree

1 file changed

+1
-1
lines changed
  • core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/batchmanager

1 file changed

+1
-1
lines changed

core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/batchmanager/BatchingMap.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public BatchingMap() {
4040
this.batchContextMap = new ConcurrentHashMap<>();
4141
}
4242

43-
public void put (String batchKey, Supplier<ScheduledFuture<?>> scheduleFlush, RequestT request,
43+
public void put(String batchKey, Supplier<ScheduledFuture<?>> scheduleFlush, RequestT request,
4444
CompletableFuture<ResponseT> response) {
4545
batchContextMap.computeIfAbsent(batchKey, k -> new BatchBuffer<>(scheduleFlush.get()))
4646
.put(request, response);

0 commit comments

Comments
 (0)