Skip to content

Commit 5338772

Browse files
Yoshihiro Shimizumengxr
authored andcommitted
remove 'return'
looks unnecessary 😀 Author: Yoshihiro Shimizu <[email protected]> Closes #4268 from y-shimizu/remove-return and squashes the following commits: 12be0e9 [Yoshihiro Shimizu] remove 'return'
1 parent f240fe3 commit 5338772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mllib/src/main/scala/org/apache/spark/mllib/linalg/Vectors.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sealed trait Vector extends Serializable {
7878
result = 31 * result + (bits ^ (bits >>> 32)).toInt
7979
}
8080
}
81-
return result
81+
result
8282
}
8383

8484
/**

0 commit comments

Comments
 (0)