Skip to content

Commit

Permalink
[SPARK-12665][CORE][GRAPHX] Remove Vector, VectorSuite and GraphKryoR…
Browse files Browse the repository at this point in the history
…egistrator which are deprecated and no longer used

Whole code of Vector.scala, VectorSuite.scala and GraphKryoRegistrator.scala  are no longer used so it's time to remove them in Spark 2.0.

Author: Kousuke Saruta <sarutak@oss.nttdata.co.jp>

Closes apache#10613 from sarutak/SPARK-12665.
  • Loading branch information
sarutak authored and rxin committed Jan 6, 2016
1 parent 5d871ea commit 94c202c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 253 deletions.
159 changes: 0 additions & 159 deletions core/src/main/scala/org/apache/spark/util/Vector.scala

This file was deleted.

45 changes: 0 additions & 45 deletions core/src/test/scala/org/apache/spark/util/VectorSuite.scala

This file was deleted.

This file was deleted.

7 changes: 7 additions & 0 deletions project/MimaExcludes.scala
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@ object MimaExcludes {
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.api.java.JavaSparkContext.defaultMinSplits"),
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.api.java.JavaSparkContext.clearJars"),
ProblemFilters.exclude[MissingMethodProblem]("org.apache.spark.api.java.JavaSparkContext.clearFiles")
) ++
// SPARK-12665 Remove deprecated and unused classes
Seq(
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.graphx.GraphKryoRegistrator"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.util.Vector"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.util.Vector$Multiplier"),
ProblemFilters.exclude[MissingClassProblem]("org.apache.spark.util.Vector$")
)
case v if v.startsWith("1.6") =>
Seq(
Expand Down

0 comments on commit 94c202c

Please sign in to comment.