Skip to content

Commit

Permalink
remove extra extra braces
Browse files Browse the repository at this point in the history
  • Loading branch information
Wilson Wu committed Mar 13, 2016
1 parent c1e4e41 commit bb8b83a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -578,11 +578,11 @@ class CleanerTester(
}

private def uncleanedResourcesToString = {
val s1 = {toBeCleanedRDDIds.synchronized {
toBeCleanedRDDIds.toSeq.sorted.mkString("[", ", ", "]")}
val s1 = toBeCleanedRDDIds.synchronized {
toBeCleanedRDDIds.toSeq.sorted.mkString("[", ", ", "]")
}
val s2 = {toBeCleanedShuffleIds.synchronized {
toBeCleanedShuffleIds.toSeq.sorted.mkString("[", ", ", "]")}
val s2 = toBeCleanedShuffleIds.synchronized {
toBeCleanedShuffleIds.toSeq.sorted.mkString("[", ", ", "]")
}
val s3 = toBeCleanedBroadcstIds.synchronized {
toBeCleanedBroadcstIds.toSeq.sorted.mkString("[", ", ", "]")
Expand Down

0 comments on commit bb8b83a

Please sign in to comment.