Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .changes/next-release/bugfix-AWSSDKforJavav2-17646a4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "bugfix",
"category": "AWS SDK for Java v2",
"contributor": "benjaminp",
"description": "Do not check for thread interruption in `SdkFilterInputStream.close()`."
}
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,6 @@ public int available() throws IOException {
return in.available();
}

@Override
public void close() throws IOException {
in.close();
abortIfNeeded();
}

@Override
public synchronized void mark(int readlimit) {
abortIfNeeded();
Expand Down