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.
Hello,
when I upgraded Reflections from
0.9.12to0.10.2then 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.