Skip to content

Commit d80c426

Browse files
committed
remove empty lines in short class
1 parent 2c8adb2 commit d80c426

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

core/src/main/scala/org/apache/spark/storage/BlockManager.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -335,11 +335,8 @@ private[spark] class BlockManager(
335335
// initialization, etc.). Reducer read shuffle blocks one by one so we could do the
336336
// wrapping lazily to save memory.
337337
class LazyProxyIterator(f: => Iterator[Any]) extends Iterator[Any] {
338-
339338
lazy val proxy = f
340-
341339
override def hasNext: Boolean = proxy.hasNext
342-
343340
override def next(): Any = proxy.next()
344341
}
345342

0 commit comments

Comments
 (0)