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
The issue is the same as this but the thread is closed so I am going ahead to create a new one. I am currently getting around the fix of this by doing something like this:
final Set<Class<? extends BaseClass>> subTypes =
new Reflections(new ConfigurationBuilder().forPackages(myPackage).filterInputsBy(new FilterBuilder().exclude("test")))
.getSubTypesOf(BaseClass.class);
It looks not so elegant and slightly hacky. Is there any elegant solution to this or a feature available in the latest Reflections library?
The text was updated successfully, but these errors were encountered:
The issue is the same as this but the thread is closed so I am going ahead to create a new one. I am currently getting around the fix of this by doing something like this:
It looks not so elegant and slightly hacky. Is there any elegant solution to this or a feature available in the latest Reflections library?
The text was updated successfully, but these errors were encountered: