From 4da74b3cde28aa693f27d9bc560e7949ceb4fd8e Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Mon, 3 Apr 2017 10:39:51 -0700 Subject: [PATCH] Remove duplicate copy of get_full_name(). --- static/js/people.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/static/js/people.js b/static/js/people.js index 825607d593..4fcf602073 100644 --- a/static/js/people.js +++ b/static/js/people.js @@ -174,10 +174,6 @@ exports.reply_to_to_user_ids_string = function (emails_string) { return user_ids.join(','); }; -exports.get_full_name = function (user_id) { - return people_by_user_id_dict.get(user_id).full_name; -}; - exports.emails_strings_to_user_ids_string = function (emails_string) { var emails = emails_string.split(','); return exports.email_list_to_user_ids_string(emails);