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

This commit is contained in:
Michael Allman
2022-04-28 00:44:30 -07:00
committed by GitHub
parent a94e1b172e
commit f7db16add1

View File

@@ -100,7 +100,7 @@ class NativeLibLoader {
});
return muslRelatedMemoryMappedFilename.isPresent();
} catch (IOException ignored) {
} catch (Exception ignored) {
// ignored
}
return false;