Remove exception

This commit is contained in:
Andrea Cavalli 2023-02-08 08:52:37 +01:00
parent ff6922449c
commit df420d4193
1 changed files with 3 additions and 1 deletions

View File

@ -120,7 +120,9 @@ public class LLUtils {
MethodHandle isAccessibleMethodHandle = null;
try {
isAccessibleMethodHandle = PUBLIC_LOOKUP.findVirtual(AbstractNativeReference.class, "isAccessible", methodType);
} catch (NoSuchMethodException | IllegalAccessException e) {
} catch (NoSuchMethodException e) {
logger.debug("Failed to find isAccessible(): no such method");
} catch (IllegalAccessException e) {
logger.debug("Failed to find isAccessible()", e);
}
IS_ACCESSIBLE_METHOD_HANDLE = isAccessibleMethodHandle;