Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
1993a8e5
Commit
1993a8e5
authored
14 years ago
by
Ismael Juma
Browse files
Options
Downloads
Patches
Plain Diff
Use += instead of + for mutable sequences as the latter is deprecated.
parent
22272917
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/src/main/scala/spark/BitTorrentBroadcast.scala
+4
-4
4 additions, 4 deletions
core/src/main/scala/spark/BitTorrentBroadcast.scala
with
4 additions
and
4 deletions
core/src/main/scala/spark/BitTorrentBroadcast.scala
+
4
−
4
View file @
1993a8e5
...
@@ -113,7 +113,7 @@ extends Broadcast[T] with Logging {
...
@@ -113,7 +113,7 @@ extends Broadcast[T] with Logging {
}
}
// In the beginning, this is the only known source to Guide
// In the beginning, this is the only known source to Guide
listOfSources
=
listOfSources
+
masterSource
listOfSources
+
=
masterSource
// Register with the Tracker
// Register with the Tracker
BitTorrentBroadcast
.
registerValue
(
uuid
,
BitTorrentBroadcast
.
registerValue
(
uuid
,
...
@@ -268,7 +268,7 @@ extends Broadcast[T] with Logging {
...
@@ -268,7 +268,7 @@ extends Broadcast[T] with Logging {
if
(
listOfSources
.
contains
(
newSourceInfo
))
{
if
(
listOfSources
.
contains
(
newSourceInfo
))
{
listOfSources
=
listOfSources
-
newSourceInfo
listOfSources
=
listOfSources
-
newSourceInfo
}
}
listOfSources
=
listOfSources
+
newSourceInfo
listOfSources
+
=
newSourceInfo
}
}
}
}
...
@@ -446,7 +446,7 @@ extends Broadcast[T] with Logging {
...
@@ -446,7 +446,7 @@ extends Broadcast[T] with Logging {
// Add to peersNowTalking. Remove in the thread. We have to do this
// Add to peersNowTalking. Remove in the thread. We have to do this
// ASAP, otherwise pickPeerToTalkTo picks the same peer more than once
// ASAP, otherwise pickPeerToTalkTo picks the same peer more than once
peersNowTalking
.
synchronized
{
peersNowTalking
.
synchronized
{
peersNowTalking
=
peersNowTalking
+
peerToTalkTo
peersNowTalking
+
=
peerToTalkTo
}
}
}
}
...
@@ -878,7 +878,7 @@ extends Broadcast[T] with Logging {
...
@@ -878,7 +878,7 @@ extends Broadcast[T] with Logging {
i
=
i
-
1
i
=
i
-
1
}
}
selectedSources
=
selectedSources
+
curPeer
selectedSources
+
=
curPeer
alreadyPicked
.
set
(
i
)
alreadyPicked
.
set
(
i
)
picksLeft
=
picksLeft
-
1
picksLeft
=
picksLeft
-
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment