Repository: spark Updated Branches: refs/heads/master 394d8cb1c -> f25ebed9f
SPARK-1695: java8-tests compiler error: package com.google.common.co... ...llections does not exist Author: witgo <[email protected]> Closes #611 from witgo/SPARK-1695 and squashes the following commits: d77a887 [witgo] Fix SPARK-1695: java8-tests compiler error: package com.google.common.collections does not exist Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/f25ebed9 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/f25ebed9 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/f25ebed9 Branch: refs/heads/master Commit: f25ebed9f4552bc2c88a96aef06729d9fc2ee5b3 Parents: 394d8cb Author: witgo <[email protected]> Authored: Fri May 2 12:40:27 2014 -0700 Committer: Patrick Wendell <[email protected]> Committed: Fri May 2 12:40:27 2014 -0700 ---------------------------------------------------------------------- .../java8-tests/src/test/java/org/apache/spark/Java8APISuite.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/f25ebed9/extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java ---------------------------------------------------------------------- diff --git a/extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java b/extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java index 7eb8b45..feabca6 100644 --- a/extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java +++ b/extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java @@ -23,7 +23,7 @@ import java.util.*; import scala.Tuple2; -import com.google.common.collections.Iterables; +import com.google.common.collect.Iterables; import com.google.common.base.Optional; import com.google.common.io.Files; import org.apache.hadoop.io.IntWritable;
