Skip to content

Commit

Permalink
[COMPRESS-661] ArchiveInputStream markSupported should always return
Browse files Browse the repository at this point in the history
false
  • Loading branch information
garydgregory committed Mar 5, 2024
1 parent 3d549a0 commit 1a6e7cd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,11 @@ public int read() throws IOException {
* Does nothing.
*
* TODO [COMPRESS-670] Support mark() and reset() in ArchiveInputStream.
*
* @throws IOException not thrown here but may be thrown from a subclass.
*/
@Override
public synchronized void reset() {
public synchronized void reset() throws IOException {
// noop
}
}

0 comments on commit 1a6e7cd

Please sign in to comment.