Remove unused in_realm var in people.add()

(imported from commit af827e29b03492c671c1f05df9bb3280fde0ad4e)
This commit is contained in:
Steve Howell
2014-02-01 09:17:17 -05:00
parent 945df53280
commit 20cfb9fe84

View File

@@ -52,7 +52,7 @@ exports.get_rest_of_realm = function get_rest_of_realm() {
return people_minus_you.sort(people_cmp); return people_minus_you.sort(people_cmp);
}; };
exports.add = function add(person, in_realm) { exports.add = function add(person) {
page_params.people_list.push(person); page_params.people_list.push(person);
people_dict.set(person.email, person); people_dict.set(person.email, person);
people_by_name_dict.set(person.full_name, person); people_by_name_dict.set(person.full_name, person);