aboutsummaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorwitgo <witgo@qq.com>2014-05-02 12:40:27 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-05-02 12:40:27 -0700
commitf25ebed9f4552bc2c88a96aef06729d9fc2ee5b3 (patch)
treec5d4e2e353169db860ff0164369a1ab648e6ffc8 /extras
parent394d8cb1c4dfd1e496562009e716b8fc06be22cd (diff)
downloadspark-f25ebed9f4552bc2c88a96aef06729d9fc2ee5b3.tar.gz
spark-f25ebed9f4552bc2c88a96aef06729d9fc2ee5b3.tar.bz2
spark-f25ebed9f4552bc2c88a96aef06729d9fc2ee5b3.zip
SPARK-1695: java8-tests compiler error: package com.google.common.co...
...llections does not exist Author: witgo <witgo@qq.com> 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
Diffstat (limited to 'extras')
-rw-r--r--extras/java8-tests/src/test/java/org/apache/spark/Java8APISuite.java2
1 files changed, 1 insertions, 1 deletions
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 7eb8b45fc3..feabca6733 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;