Remove import on Guava

Closes gh-10085
pull/10101/head
Stephane Nicoll 7 years ago
parent 4990b52b72
commit 2cbffc329f

@ -24,8 +24,7 @@ import java.util.Map;
import java.util.Objects;
import java.util.concurrent.Callable;
import java.util.stream.Stream;
import com.google.common.collect.Streams;
import java.util.stream.StreamSupport;
import org.springframework.boot.context.properties.source.ConfigurationPropertySources;
import org.springframework.context.ApplicationContext;
@ -179,7 +178,7 @@ public final class TestPropertyValues {
if (pairs == null) {
return empty();
}
return of(Streams.stream(pairs));
return of(StreamSupport.stream(pairs.spliterator(), false));
}
/**

Loading…
Cancel
Save