Skip to content

Commit

Permalink
'#1961: upgrade commons-compress to 1.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lfcnassif committed Oct 17, 2024
1 parent cdb5ebe commit e7e6ad9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion iped-app/src/main/java/iped/app/ui/TextParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.InterruptedIOException;
import java.io.RandomAccessFile;
Expand Down Expand Up @@ -207,7 +208,7 @@ public CountInputStream(InputStream in) {
}

@Override
protected synchronized void afterRead(final int n) {
protected synchronized void afterRead(final int n) throws IOException {
super.afterRead(n);
progressMonitor.setProgress(this.getByteCount());
}
Expand Down
2 changes: 1 addition & 1 deletion iped-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<!-- check https://github.com/sepinf-inc/IPED/issues/1068 when upgrading this -->
<version>1.25.0</version>
<version>1.27.1</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
Expand Down

0 comments on commit e7e6ad9

Please sign in to comment.