Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -231,9 +231,9 @@ public void complete() {
}
});

// Create another reference to this.decodeResults so the lambda expression will capture this local reference
// because this.decodeResults will be reset to null after resultFuture is completed.
final ConcurrentLinkedQueue<DecodeResult> decodeResults = this.decodeResults;
// Create a copy of this.decodeResults so the lambda expression will capture the current state
// because this.decodeResults will cleared after resultFuture is completed.
final List<DecodeResult> decodeResults = new ArrayList<>(this.decodeResults);
resultFuture.complete(
new ResponseCallbackWrapper(
new FetchResponse<>(
Expand Down