Hi, I've seen that the CollectionAdapterConfiguration class doesn't load the
config file from the class context. It creates a new FileInputStream instead
of get it from the context class loader. Can anyone explain me why this
class does that?
This is the current source code:
return new FileInputStream(fileLocation);
I propose to change to this code:
return Thread.currentThread
().getContextClassLoader().getResourceAsStream(fileLocation);
If there is no objection I'm going to submit a patch to jira.
Cheers