Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
* For help, please visit <a href="http://nativelibs4java.googlecode.com/">NativeLibs4Java</a> , <a href="http://rococoa.dev.java.net/">Rococoa</a>, or <a href="http://jna.dev.java.net/">JNA</a>.
*/
public class ImobiledeviceSdkLibrary implements Library {
public static final String JNA_LIBRARY_NAME = "imobiledevice-sdk";
private static final boolean initialized = JNAInit.init();
public static final String JNA_LIBRARY_NAME = "imobiledevice-sdk";
public static final NativeLibrary JNA_NATIVE_LIB = NativeLibrary.getInstance(ImobiledeviceSdkLibrary.JNA_LIBRARY_NAME);
static {
Native.register(ImobiledeviceSdkLibrary.class, ImobiledeviceSdkLibrary.JNA_NATIVE_LIB);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ public static synchronized boolean init() {
copy("darwin/idevicedebug", dst);
dst.setExecutable(true);

ImobiledeviceSdkLibrary.sdk_idevice_event_unsubscribe();
initialize = true;
return true;
}
Expand Down