aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorXiangrui Meng <meng@databricks.com>2015-02-02 17:10:01 -0800
committerXiangrui Meng <meng@databricks.com>2015-02-02 17:10:01 -0800
commitef65cf09b04f915ab463a6d3bac12795318897f2 (patch)
tree46f2107a0d6787ea07b94aea8cb153067c0eef48 /project
parentf133dece569f7faedb06a0da6e9f86c5d615e9be (diff)
downloadspark-ef65cf09b04f915ab463a6d3bac12795318897f2.tar.gz
spark-ef65cf09b04f915ab463a6d3bac12795318897f2.tar.bz2
spark-ef65cf09b04f915ab463a6d3bac12795318897f2.zip
[SPARK-5540] hide ALS.solveLeastSquares
This method survived the code review and it has been there since v1.1.0. It exposes jblas types. Let's remove it from the public API. I think no one calls it directly. Author: Xiangrui Meng <meng@databricks.com> Closes #4318 from mengxr/SPARK-5540 and squashes the following commits: 586ade6 [Xiangrui Meng] hide ALS.solveLeastSquares
Diffstat (limited to 'project')
-rw-r--r--project/MimaExcludes.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 45be1db9a5..78de1f0652 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -67,6 +67,10 @@ object MimaExcludes {
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.mllib.linalg.Matrix.foreachActive")
) ++ Seq(
+ // SPARK-5540
+ ProblemFilters.exclude[MissingMethodProblem](
+ "org.apache.spark.mllib.recommendation.ALS.solveLeastSquares")
+ ) ++ Seq(
// SPARK-3325
ProblemFilters.exclude[MissingMethodProblem](
"org.apache.spark.streaming.api.java.JavaDStreamLike.print"),