Hi,
I just found two tiny optimization opportunities in AutoConfigurationImportSelector.filter() that this PR addresses:
- skippedcandidates are set to null, so there seems to be no need to explicitly hold a- skiparray for this purpose.
- the resultArrayList is copied to a new ArrayList, which seems redundant.
Let me know if I'm missing something.
Cheers, Christoph