Skip to content
Snippets Groups Projects
Commit b1b22b7a authored by Patrick Wendell's avatar Patrick Wendell
Browse files

Style fix

parent 6f965a46
No related branches found
No related tags found
No related merge requests found
...@@ -341,7 +341,7 @@ class SparkContext( ...@@ -341,7 +341,7 @@ class SparkContext(
*/ */
def textFile(path: String, minSplits: Int = defaultMinSplits): RDD[String] = { def textFile(path: String, minSplits: Int = defaultMinSplits): RDD[String] = {
hadoopFile(path, classOf[TextInputFormat], classOf[LongWritable], classOf[Text], hadoopFile(path, classOf[TextInputFormat], classOf[LongWritable], classOf[Text],
minSplits, false).map(pair => pair._2.toString) minSplits, cloneRecords = false).map(pair => pair._2.toString)
} }
/** /**
......
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