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
Hello,
when I upgraded Reflections from 0.9.12 to 0.10.2 then my code stops working anymore. The reason is that I get ReflectionException in ConfigurationBuilder#build method when one of the parameter is a class loader.
I compared the code and it seems like there used to be a condition else if (param instanceof ClassLoader) { /* already taken care */ }. However this condition is omitted in the new version.
The text was updated successfully, but these errors were encountered:
Hello,
when I upgraded Reflections from
0.9.12
to0.10.2
then my code stops working anymore. The reason is that I get ReflectionException in ConfigurationBuilder#build method when one of the parameter is a class loader.I compared the code and it seems like there used to be a condition
else if (param instanceof ClassLoader) { /* already taken care */ }
. However this condition is omitted in the new version.The text was updated successfully, but these errors were encountered: