diff --git a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyHealthEndpointAdditionalPathResourceFactory.java b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyHealthEndpointAdditionalPathResourceFactory.java index 9e744585c2f..e182af12d84 100644 --- a/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyHealthEndpointAdditionalPathResourceFactory.java +++ b/spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/web/jersey/JerseyHealthEndpointAdditionalPathResourceFactory.java @@ -20,7 +20,6 @@ import java.util.ArrayList; import java.util.Collection; import java.util.List; import java.util.Set; -import java.util.stream.Collectors; import java.util.stream.Stream; import org.glassfish.jersey.server.model.Resource; @@ -60,7 +59,7 @@ public final class JerseyHealthEndpointAdditionalPathResourceFactory { return endpoints.stream() .flatMap((endpoint) -> endpoint.getOperations().stream()) .flatMap((operation) -> createResources(endpointMapping, operation)) - .collect(Collectors.toList()); + .toList(); } private Stream createResources(EndpointMapping endpointMapping, WebOperation operation) {