-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnsatisfiedLinkError: cannot find native jdk.internal.reflect.Reflection.getClassAccessFlags #106
Comments
As far as I can tell, JPF currently does not search inner classes (perhaps it should), so we can probably get away with delegating this to |
When you say 'search' did you mean the resolving of the classes?. If so, I could confirm that it resolves not just the superclasses and interfaces of a requested class but also its static inner classes (eg: java.lang.String$CaseInsensitiveComparator), and nested interfaces (eg: java.lang.Thread$UncaughtExceptionHandler) |
I've tried the following implementation:
But I'm not quite sure about the following code snippet:
Is this the correct approach to retrieve a Class object associated with given class reference |
Yes, I meant the mechanism of searching super classes/interfaces for methods that cannot be found in the current class. |
Thanks for asking. This would get the information about class |
Runtime error "java.lang.UnsatisfiedLinkError: cannot find native jdk.internal.reflect.Reflection.getClassAccessFlags" when running CountDownLatchTest
The above error follows after the PR #104
The text was updated successfully, but these errors were encountered: