Merge pull request #17691 from izeye
* pr/17691: Polish Closes gh-17691
This commit is contained in:
commit
0420ee912c
|
@ -19,10 +19,10 @@ package org.springframework.boot.context.embedded;
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.StringReader;
|
import java.io.StringReader;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
@ -85,13 +85,8 @@ public class EmbeddedServletContainerWarDevelopmentIntegrationTests
|
||||||
if (input == null) {
|
if (input == null) {
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
List<String> lines = new ArrayList<>();
|
|
||||||
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
|
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
|
||||||
String line;
|
return reader.lines().collect(Collectors.toList());
|
||||||
while ((line = reader.readLine()) != null) {
|
|
||||||
lines.add(line);
|
|
||||||
}
|
|
||||||
return lines;
|
|
||||||
}
|
}
|
||||||
catch (IOException ex) {
|
catch (IOException ex) {
|
||||||
throw new RuntimeException("Failed to read lines from input '" + input + "'");
|
throw new RuntimeException("Failed to read lines from input '" + input + "'");
|
||||||
|
|
|
@ -19,10 +19,10 @@ package org.springframework.boot.context.embedded;
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.StringReader;
|
import java.io.StringReader;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
|
@ -108,13 +108,8 @@ public class EmbeddedServletContainerWarPackagingIntegrationTests
|
||||||
if (input == null) {
|
if (input == null) {
|
||||||
return Collections.emptyList();
|
return Collections.emptyList();
|
||||||
}
|
}
|
||||||
List<String> lines = new ArrayList<>();
|
|
||||||
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
|
try (BufferedReader reader = new BufferedReader(new StringReader(input))) {
|
||||||
String line;
|
return reader.lines().collect(Collectors.toList());
|
||||||
while ((line = reader.readLine()) != null) {
|
|
||||||
lines.add(line);
|
|
||||||
}
|
|
||||||
return lines;
|
|
||||||
}
|
}
|
||||||
catch (IOException ex) {
|
catch (IOException ex) {
|
||||||
throw new RuntimeException("Failed to read lines from input '" + input + "'");
|
throw new RuntimeException("Failed to read lines from input '" + input + "'");
|
||||||
|
|
Loading…
Reference in New Issue