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 3630
3630
<profile >
3631
3631
<id >scala-2.13</id >
3632
3632
<properties >
3633
- <scala .version>2.13.8 </scala .version>
3633
+ <scala .version>2.13.11 </scala .version>
3634
3634
<scala .binary.version>2.13</scala .binary.version>
3635
3635
</properties >
3636
3636
<build >
3689
3689
-->
3690
3690
<arg >-Wconf:cat=unused-imports& src=org\/apache\/spark\/graphx\/impl\/VertexPartitionBase.scala:s</arg >
3691
3691
<arg >-Wconf:cat=unused-imports& src=org\/apache\/spark\/graphx\/impl\/VertexPartitionBaseOps.scala:s</arg >
3692
+ <!--
3693
+ SPARK-40497 Upgrade Scala to 2.13.11 and suppress `Implicit definition should have explicit type`
3694
+ -->
3695
+ <arg >-Wconf:msg=Implicit definition should have explicit type:s</arg >
3692
3696
</args >
3693
3697
<compilerPlugins combine.self=" override" >
3694
3698
</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