Merge branch '2.1.x'

pull/17701/head
Madhura Bhave 5 years ago
commit 1b10ecbe1b

@ -19,9 +19,9 @@ package org.springframework.boot.context.embedded;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import org.junit.jupiter.api.TestTemplate;
@ -72,13 +72,8 @@ public class EmbeddedServletContainerWarDevelopmentIntegrationTests {
if (input == null) {
return Collections.emptyList();
}
List<String> lines = new ArrayList<>();
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
String line;
while ((line = reader.readLine()) != null) {
lines.add(line);
}
return lines;
return reader.lines().collect(Collectors.toList());
}
catch (IOException ex) {
throw new RuntimeException("Failed to read lines from input '" + input + "'");

@ -19,9 +19,9 @@ package org.springframework.boot.context.embedded;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import org.junit.jupiter.api.TestTemplate;
@ -94,13 +94,8 @@ public class EmbeddedServletContainerWarPackagingIntegrationTests {
if (input == null) {
return Collections.emptyList();
}
List<String> lines = new ArrayList<>();
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
String line;
while ((line = reader.readLine()) != null) {
lines.add(line);
}
return lines;
return reader.lines().collect(Collectors.toList());
}
catch (IOException ex) {
throw new RuntimeException("Failed to read lines from input '" + input + "'");

Loading…
Cancel
Save