Skip to content

Commit 40fe1d7

Browse files
committed
Removing rouge space
1 parent 31fe08e commit 40fe1d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/scala/org/apache/spark/CacheManager.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private[spark] class CacheManager(blockManager: BlockManager) extends Logging {
7373
if (context.runningLocally) { return computedValues }
7474
if (storageLevel.useDisk && !storageLevel.useMemory) {
7575
blockManager.put(key, computedValues, storageLevel, tellMaster = true)
76-
return blockManager.get(key) match {
76+
return blockManager.get(key) match {
7777
case Some(values) =>
7878
return new InterruptibleIterator(context, values.asInstanceOf[Iterator[T]])
7979
case None =>

0 commit comments

Comments
 (0)