Skip to content

Commit

Permalink
Merge branch '2.4.x' into 2.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Jun 24, 2021
2 parents b093db1 + a7872f4 commit e2d68aa
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -114,7 +114,7 @@ public List<T> instantiateTypes(Collection<Class<?>> types) {
return instantiate(types.stream().map((type) -> TypeSupplier.forType(type)));
}

public List<T> instantiate(Stream<TypeSupplier> typeSuppliers) {
private List<T> instantiate(Stream<TypeSupplier> typeSuppliers) {
List<T> instances = typeSuppliers.map(this::instantiate).collect(Collectors.toList());
AnnotationAwareOrderComparator.sort(instances);
return Collections.unmodifiableList(instances);
Expand Down

0 comments on commit e2d68aa

Please sign in to comment.