-
-
Notifications
You must be signed in to change notification settings - Fork 565
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
Implement PluginClassLoader.getResources (#336) #337
Conversation
The logic of the method is essentially a reversed copy & paste of the `ClassLoader::getResources(String)` method.
I took the liberty to write some tests for the existing I'd be happy to add more tests if I've missed some (edge-)cases. |
The PR looks good. |
Thank you for the feedback, and sorry for the late response. I'm trying to figure out how to utilize |
Thanks for the rubberduck.. 🦆 😄 I think I found a solution that feels ok. I'll let the latest changes be a separate commit until you have reviewed them. |
I missed the notification that you made some changes. Sorry. |
It could work yes, but I'm not sure if it makes sense to do it via the |
I removed the static files and use a static |
Good job. Thanks! |
The logic of the method is essentially a reversed copy & paste of the
ClassLoader::getResources(String)
method.See #336 for a more in-depth description of the problem this PR tries to resolve.