Skip to content

Commit

Permalink
Remove unicode operator from RDD.scala
Browse files Browse the repository at this point in the history
Some IDEs don’t support unicode characters in source code. Check if this breaks binary compatibility.

Author: Doris Xin <doris.s.xin@gmail.com>

Closes apache#1119 from dorx/unicode and squashes the following commits:

05618c3 [Doris Xin] Remove unicode operator from RDD.scala
  • Loading branch information
dorx authored and conviva-zz committed Sep 4, 2014
1 parent 0466123 commit af3bf1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/rdd/RDD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ abstract class RDD[T: ClassTag](
* Return this RDD sorted by the given key function.
*/
def sortBy[K](
f: (T) K,
f: (T) => K,
ascending: Boolean = true,
numPartitions: Int = this.partitions.size)
(implicit ord: Ordering[K], ctag: ClassTag[K]): RDD[T] =
Expand Down

0 comments on commit af3bf1b

Please sign in to comment.