Skip to content

Commit

Permalink
Fixed style violation from refactoring.
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed Sep 3, 2014
1 parent 2960c93 commit 1332156
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ private[spark] class BlockManager(
val locations = Random.shuffle(master.getLocations(blockId))
for (loc <- locations) {
logDebug(s"Getting remote block $blockId from $loc")
val data = blockTransferService.fetchBlockSync(loc.host, loc.port, blockId.toString).nioByteBuffer()
val data = blockTransferService.fetchBlockSync(
loc.host, loc.port, blockId.toString).nioByteBuffer()

if (data != null) {
if (asBlockResult) {
Expand Down

0 comments on commit 1332156

Please sign in to comment.