Skip to content

Commit 1332156

Browse files
committed
Fixed style violation from refactoring.
1 parent 2960c93 commit 1332156

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,8 @@ private[spark] class BlockManager(
519519
val locations = Random.shuffle(master.getLocations(blockId))
520520
for (loc <- locations) {
521521
logDebug(s"Getting remote block $blockId from $loc")
522-
val data = blockTransferService.fetchBlockSync(loc.host, loc.port, blockId.toString).nioByteBuffer()
522+
val data = blockTransferService.fetchBlockSync(
523+
loc.host, loc.port, blockId.toString).nioByteBuffer()
523524

524525
if (data != null) {
525526
if (asBlockResult) {

0 commit comments

Comments
 (0)