aboutsummaryrefslogtreecommitdiff
path: root/project/MimaExcludes.scala
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-03-23 23:41:06 -0700
committerReynold Xin <rxin@databricks.com>2015-03-23 23:41:06 -0700
commit4ce2782a61e23ed0326faac2ee97a9bd36ec8963 (patch)
treea406f4658118575683fb019d852f4d1055d76023 /project/MimaExcludes.scala
parentbfd3ee9f76aaab3dcde71d92e2b8ca60a0e42262 (diff)
downloadspark-4ce2782a61e23ed0326faac2ee97a9bd36ec8963.tar.gz
spark-4ce2782a61e23ed0326faac2ee97a9bd36ec8963.tar.bz2
spark-4ce2782a61e23ed0326faac2ee97a9bd36ec8963.zip
[SPARK-6428] Added explicit types for all public methods in core.
Author: Reynold Xin <rxin@databricks.com> Closes #5125 from rxin/core-explicit-type and squashes the following commits: f471415 [Reynold Xin] Revert style checker changes. 81b66e4 [Reynold Xin] Code review feedback. a7533e3 [Reynold Xin] Mima excludes. 1d795f5 [Reynold Xin] [SPARK-6428] Added explicit types for all public methods in core.
Diffstat (limited to 'project/MimaExcludes.scala')
-rw-r--r--project/MimaExcludes.scala8
1 files changed, 7 insertions, 1 deletions
diff --git a/project/MimaExcludes.scala b/project/MimaExcludes.scala
index 328d59485a..56f5dbe53f 100644
--- a/project/MimaExcludes.scala
+++ b/project/MimaExcludes.scala
@@ -44,7 +44,13 @@ object MimaExcludes {
// the maven-generated artifacts in 1.3.
excludePackage("org.spark-project.jetty"),
MimaBuild.excludeSparkPackage("unused"),
- ProblemFilters.exclude[MissingClassProblem]("com.google.common.base.Optional")
+ ProblemFilters.exclude[MissingClassProblem]("com.google.common.base.Optional"),
+ ProblemFilters.exclude[IncompatibleResultTypeProblem](
+ "org.apache.spark.rdd.JdbcRDD.compute"),
+ ProblemFilters.exclude[IncompatibleResultTypeProblem](
+ "org.apache.spark.broadcast.HttpBroadcastFactory.newBroadcast"),
+ ProblemFilters.exclude[IncompatibleResultTypeProblem](
+ "org.apache.spark.broadcast.TorrentBroadcastFactory.newBroadcast")
)
case v if v.startsWith("1.3") =>