Skip to content
Snippets Groups Projects
Commit 1f538111 authored by Holden Karau's avatar Holden Karau
Browse files

method first in trait IterableLike is deprecated: use `head' instead

parent 8456d673
No related branches found
No related tags found
No related merge requests found
...@@ -28,7 +28,7 @@ class QueueInputDStream[T: ClassManifest]( ...@@ -28,7 +28,7 @@ class QueueInputDStream[T: ClassManifest](
} }
if (buffer.size > 0) { if (buffer.size > 0) {
if (oneAtATime) { if (oneAtATime) {
Some(buffer.first) Some(buffer.head)
} else { } else {
Some(new UnionRDD(ssc.sc, buffer.toSeq)) Some(new UnionRDD(ssc.sc, buffer.toSeq))
} }
......
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