Skip to content

Commit 28554a1

Browse files
committed
ConcurrentFileExtractor: removed unused imports and throws statements
1 parent 4aa9612 commit 28554a1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

snaploader/src/main/java/electrostatic4j/snaploader/filesystem/ConcurrentFileExtractor.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232

3333
package electrostatic4j.snaploader.filesystem;
3434

35-
import java.io.FileNotFoundException;
3635
import java.io.IOException;
3736
import java.util.concurrent.locks.ReentrantLock;
3837

@@ -53,9 +52,8 @@ public class ConcurrentFileExtractor extends FileExtractor {
5352
*
5453
* @param fileLocator locates a filesystem inside a zip compression
5554
* @param destination an absolute filesystem path representing the extraction destination filesystem
56-
* @throws FileNotFoundException if the destination filesystem path is not found
5755
*/
58-
public ConcurrentFileExtractor(FileLocator fileLocator, String destination) throws FileNotFoundException {
56+
public ConcurrentFileExtractor(FileLocator fileLocator, String destination) {
5957
super(fileLocator, destination);
6058
}
6159

0 commit comments

Comments
 (0)