Skip to content

Commit

Permalink
Revert "Remove nulls from collected bean definition refs"
Browse files Browse the repository at this point in the history
This reverts commit 4846e62.
  • Loading branch information
Matthew Moss committed Sep 22, 2023
1 parent 79fbcc8 commit 6bd057c
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1751,7 +1751,6 @@ protected List<BeanDefinitionReference> resolveBeanDefinitionReferences() {
final SoftServiceLoader<BeanDefinitionReference> definitions = SoftServiceLoader.load(BeanDefinitionReference.class, classLoader);
beanDefinitionReferences = new ArrayList<>(300);
definitions.collectAll(beanDefinitionReferences, BeanDefinitionReference::isPresent);
beanDefinitionReferences.removeIf(Objects::isNull);
}
return beanDefinitionReferences;
}
Expand Down

0 comments on commit 6bd057c

Please sign in to comment.