Skip to content
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 @@ -157,16 +157,6 @@ static InputStream unwrap(final FilterInputStream filterInputStream) {
return readField(filterInputStream, "in");
}

/**
* Unwraps the given InputStream if it is an FilterInputStream to return its wrapped InputStream.
*
* @param inputStream The FilterInputStream to unwrap.
* @return The wrapped InputStream
*/
static InputStream unwrap(final InputStream inputStream) {
return inputStream instanceof FilterInputStream ? unwrap((FilterInputStream) inputStream) : inputStream;
}

/**
* Constructs a new Pack200UnpackerAdapter.
*/
Expand Down
Loading