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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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