You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Like with a similar issue in jpf-core, we have to take care of the illegal access warnings by setting the right permissions:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by nhandler.conversion.jpf2jvm.JPF2JVMjava_lang_reflect_ConstructorConverter (file:jpf-nhandler/build/classes/java/main/) to constructor java.lang.reflect.Constructor(java.lang.Class,java.lang.Class[],java.lang.Class[],int,int,java.lang.String,byte[],byte[])
WARNING: Please consider reporting this to the maintainers of nhandler.conversion.jpf2jvm.JPF2JVMjava_lang_reflect_ConstructorConverter
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
The text was updated successfully, but these errors were encountered:
Java's module system has changed, and a module needs to export its permissions correctly and be imported with the correct permission to avoid the warnings or errors shown above.
The idea here is to apply changes from PR 373 for jpf-core to build.gradle in jpf-nhandler as well:
Like with a similar issue in
jpf-core
, we have to take care of the illegal access warnings by setting the right permissions:The text was updated successfully, but these errors were encountered: