Ignore all Java exceptions when looking for Linux musl support (#7844)

This commit is contained in:
Michael Allman
2022-04-28 15:44:30 +08:00
committed by GitHub
parent a94e1b172e
commit f7db16add1
@@ -100,7 +100,7 @@ class NativeLibLoader {
});
return muslRelatedMemoryMappedFilename.isPresent();
} catch (IOException ignored) {
} catch (Exception ignored) {
// ignored
}
return false;