Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private[spark] object RDDOperationScope {
private[spark] def withScope[T](
sc: SparkContext,
name: String,
allowNesting: Boolean = false)(body: => T): T = {
allowNesting: Boolean)(body: => T): T = {
// Save the old scope to restore it later
val scopeKey = SparkContext.RDD_SCOPE_KEY
val noOverrideKey = SparkContext.RDD_SCOPE_NO_OVERRIDE_KEY
Expand All @@ -134,4 +134,4 @@ private[spark] object RDDOperationScope {
sc.setLocalProperty(noOverrideKey, oldNoOverride)
}
}
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I reverted the whitespace change here