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

Removed Logging trait from CoalescedRDD since we don't log anything

parent 4a74e863
No related branches found
No related tags found
No related merge requests found
......@@ -11,8 +11,7 @@ private class CoalescedRDDSplit(val index: Int, val parents: Array[Split]) exten
* or to avoid having a large number of small tasks when processing a directory with many files.
*/
class CoalescedRDD[T: ClassManifest](prev: RDD[T], maxPartitions: Int)
extends RDD[T](prev.context)
with Logging {
extends RDD[T](prev.context) {
@transient val splits_ : Array[Split] = {
val prevSplits = prev.splits
......
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