static {
    String path = getProperty(JAVAX_USB_LIBUSB_JAVALIBUSB1_PATH_PROPERTY);
    String aol = getAol();

    if (path != null && loadFromPath(path)) {
    } else if (aol != null && loadLibraryFromAol(aol)) {
    } else {
      // Couldn't find an AOL for this platform, fall back to the default of using
      // System.loadLibrary.
      NarSystem.loadLibrary();
    }
  }
 static
 {
     NarSystem.loadLibrary();
 }