Skip to content

Commit 4bc6e25

Browse files
committed
ConcurrentNativeBinaryLoader#cleanExtractBinary(...): fixed method sig exception
1 parent a9c5fbf commit 4bc6e25

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

snaploader/src/main/java/electrostatic4j/snaploader/ConcurrentNativeBinaryLoader.java

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

3333
package electrostatic4j.snaploader;
3434

35-
import java.io.IOException;
3635
import java.util.List;
3736
import java.util.concurrent.locks.ReentrantLock;
3837
import electrostatic4j.snaploader.platform.NativeDynamicLibrary;
@@ -59,7 +58,7 @@ public ConcurrentNativeBinaryLoader(final List<NativeDynamicLibrary> registeredL
5958
}
6059

6160
@Override
62-
protected void cleanExtractBinary(NativeDynamicLibrary library) throws IOException {
61+
protected void cleanExtractBinary(NativeDynamicLibrary library) throws Exception {
6362
try {
6463
/* CRITICAL SECTION STARTS */
6564
lock.lock();

0 commit comments

Comments
 (0)