File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 3569
3569
<profile >
3570
3570
<id >scala-2.13</id >
3571
3571
<properties >
3572
- <scala .version>2.13.8 </scala .version>
3572
+ <scala .version>2.13.11 </scala .version>
3573
3573
<scala .binary.version>2.13</scala .binary.version>
3574
3574
</properties >
3575
3575
<build >
3628
3628
-->
3629
3629
<arg >-Wconf:cat=unused-imports& src=org\/apache\/spark\/graphx\/impl\/VertexPartitionBase.scala:s</arg >
3630
3630
<arg >-Wconf:cat=unused-imports& src=org\/apache\/spark\/graphx\/impl\/VertexPartitionBaseOps.scala:s</arg >
3631
+ <!--
3632
+ SPARK-40497 Upgrade Scala to 2.13.11 and suppress `Implicit definition should have explicit type`
3633
+ -->
3634
+ <arg >-Wconf:msg=Implicit definition should have explicit type:s</arg >
3631
3635
</args >
3632
3636
<compilerPlugins combine.self=" override" >
3633
3637
</compilerPlugins >
Original file line number Diff line number Diff line change @@ -286,7 +286,9 @@ object SparkBuild extends PomBuild {
286
286
// TODO(SPARK-43850): Remove the following suppression rules and remove `import scala.language.higherKinds`
287
287
// from the corresponding files when Scala 2.12 is no longer supported.
288
288
" -Wconf:cat=unused-imports&src=org\\ /apache\\ /spark\\ /graphx\\ /impl\\ /VertexPartitionBase.scala:s" ,
289
- " -Wconf:cat=unused-imports&src=org\\ /apache\\ /spark\\ /graphx\\ /impl\\ /VertexPartitionBaseOps.scala:s"
289
+ " -Wconf:cat=unused-imports&src=org\\ /apache\\ /spark\\ /graphx\\ /impl\\ /VertexPartitionBaseOps.scala:s" ,
290
+ // SPARK-40497 Upgrade Scala to 2.13.11 and suppress `Implicit definition should have explicit type`
291
+ " -Wconf:msg=Implicit definition should have explicit type:s"
290
292
)
291
293
}
292
294
}
You can’t perform that action at this time.
0 commit comments