Skip to content

Commit

Permalink
Removing unused argumnet provided to getJoinPosition function
Browse files Browse the repository at this point in the history
  • Loading branch information
jwolski committed Apr 21, 2015
1 parent e5fe627 commit a454bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/membership.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ Membership.prototype.update = function update(changes) {
self.localMember = member;
}

self.members.splice(self.getJoinPosition(self.ringpop), 0, member);
self.members.splice(self.getJoinPosition(), 0, member);
}

member.status = update.status;
Expand Down

0 comments on commit a454bd8

Please sign in to comment.