Skip to content
Snippets Groups Projects
Commit 6962d40b authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Fix deprecated warning

parent 34a47b8b
No related branches found
No related tags found
No related merge requests found
...@@ -366,7 +366,7 @@ abstract class RDD[T: ClassManifest]( ...@@ -366,7 +366,7 @@ abstract class RDD[T: ClassManifest](
* Return a new RDD by applying a function to each partition of this RDD, while tracking the index * Return a new RDD by applying a function to each partition of this RDD, while tracking the index
* of the original partition. * of the original partition.
*/ */
@deprecated("use mapPartitionsWithIndex") @deprecated("use mapPartitionsWithIndex", "0.7.0")
def mapPartitionsWithSplit[U: ClassManifest]( def mapPartitionsWithSplit[U: ClassManifest](
f: (Int, Iterator[T]) => Iterator[U], f: (Int, Iterator[T]) => Iterator[U],
preservesPartitioning: Boolean = false): RDD[U] = preservesPartitioning: Boolean = false): RDD[U] =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment