Skip to content
Snippets Groups Projects
Commit 1993a8e5 authored by Ismael Juma's avatar Ismael Juma
Browse files

Use += instead of + for mutable sequences as the latter is deprecated.

parent 22272917
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ extends Broadcast[T] with Logging {
}
// In the beginning, this is the only known source to Guide
listOfSources = listOfSources + masterSource
listOfSources += masterSource
// Register with the Tracker
BitTorrentBroadcast.registerValue (uuid,
......@@ -268,7 +268,7 @@ extends Broadcast[T] with Logging {
if (listOfSources.contains(newSourceInfo)) {
listOfSources = listOfSources - newSourceInfo
}
listOfSources = listOfSources + newSourceInfo
listOfSources += newSourceInfo
}
}
......@@ -446,7 +446,7 @@ extends Broadcast[T] with Logging {
// Add to peersNowTalking. Remove in the thread. We have to do this
// ASAP, otherwise pickPeerToTalkTo picks the same peer more than once
peersNowTalking.synchronized {
peersNowTalking = peersNowTalking + peerToTalkTo
peersNowTalking += peerToTalkTo
}
}
......@@ -878,7 +878,7 @@ extends Broadcast[T] with Logging {
i = i - 1
}
selectedSources = selectedSources + curPeer
selectedSources += curPeer
alreadyPicked.set (i)
picksLeft = picksLeft - 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment