Skip to content

Commit 8d72341

Browse files
sarutakrxin
authored andcommitted
[Minor] Fix a typo of type parameter in JavaUtils.scala
In JavaUtils.scala, thare is a typo of type parameter. In addition, the type information is removed at the time of compile by erasure. This issue is really minor so I don't file in JIRA. Author: Kousuke Saruta <[email protected]> Closes #3789 from sarutak/fix-typo-in-javautils and squashes the following commits: e20193d [Kousuke Saruta] Fixed a typo of type parameter 82bc5d9 [Kousuke Saruta] Merge branch 'master' of git://git.apache.org/spark into fix-typo-in-javautils 99f6f63 [Kousuke Saruta] Fixed a typo of type parameter in JavaUtils.scala
1 parent 815de54 commit 8d72341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/api/java/JavaUtils.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private[spark] object JavaUtils {
8080
prev match {
8181
case Some(k) =>
8282
underlying match {
83-
case mm: mutable.Map[a, _] =>
83+
case mm: mutable.Map[A, _] =>
8484
mm remove k
8585
prev = None
8686
case _ =>

0 commit comments

Comments
 (0)