From 1808465855a8e2ce554b024ad5ff530457584aed Mon Sep 17 00:00:00 2001 From: Dongjoon Hyun Date: Sat, 26 Mar 2016 11:55:49 +0000 Subject: [MINOR] Fix newly added java-lint errors ## What changes were proposed in this pull request? This PR fixes some newly added java-lint errors(unused-imports, line-lengsth). ## How was this patch tested? Pass the Jenkins tests. Author: Dongjoon Hyun Closes #11968 from dongjoon-hyun/SPARK-14167. --- graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'graphx') diff --git a/graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala b/graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala index 7903caa312..e18831382d 100644 --- a/graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala +++ b/graphx/src/main/scala/org/apache/spark/graphx/impl/GraphImpl.scala @@ -20,11 +20,9 @@ package org.apache.spark.graphx.impl import scala.reflect.{classTag, ClassTag} import org.apache.spark.HashPartitioner -import org.apache.spark.SparkContext._ import org.apache.spark.graphx._ -import org.apache.spark.graphx.impl.GraphImpl._ import org.apache.spark.graphx.util.BytecodeUtils -import org.apache.spark.rdd.{RDD, ShuffledRDD} +import org.apache.spark.rdd.RDD import org.apache.spark.storage.StorageLevel /** -- cgit v1.2.3