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