Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hmiguim committed Feb 22, 2024
1 parent 03ca229 commit 5e767eb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dbptk-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.21</version>
<version>1.26.0</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
2 changes: 1 addition & 1 deletion dbptk-modules/dbptk-module-siard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.21</version>
<version>1.26.0</version>
</dependency>
<dependency>
<groupId>org.mapdb</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ParallelZipWriteStrategy(CompressionMethod compressionMethod) {

@Override
public OutputStream createOutputStream(SIARDArchiveContainer container, String path) throws ModuleException {
ArchiveEntry archiveEntry = new ZipArchiveEntry(path);
ZipArchiveEntry archiveEntry = new ZipArchiveEntry(path);
try {
zipOut.putArchiveEntry(archiveEntry);
} catch (IOException e) {
Expand Down Expand Up @@ -72,7 +72,6 @@ public void finish(SIARDArchiveContainer container) throws ModuleException {
}
}


try {
scatterZipCreator.writeTo(zipOut);
} catch (IOException | InterruptedException | ExecutionException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public ZipWriteStrategy(CompressionMethod compressionMethod) {

@Override
public OutputStream createOutputStream(SIARDArchiveContainer container, String path) throws ModuleException {
ArchiveEntry archiveEntry = new ZipArchiveEntry(path);
ZipArchiveEntry archiveEntry = new ZipArchiveEntry(path);
try {
zipOut.putArchiveEntry(archiveEntry);
} catch (IOException e) {
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
<module>dbptk-model</module>
<module>dbptk-bindings</module>
<module>dbptk-core</module>
<module>dbptk-bindings</module>
<module>dbptk-modules</module>
</modules>
</profile>
Expand Down Expand Up @@ -321,7 +320,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
<version>2.15.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down

0 comments on commit 5e767eb

Please sign in to comment.