Remove import on Guava

Closes gh-10085
This commit is contained in:
Stephane Nicoll 2017-08-28 09:05:02 +02:00
parent 4990b52b72
commit 2cbffc329f
1 changed files with 2 additions and 3 deletions

View File

@ -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));
}
/**