Code

builtin-remote: rename variables and eliminate redundant function call
authorJay Soffian <jaysoffian@gmail.com>
Wed, 25 Feb 2009 08:32:21 +0000 (03:32 -0500)
committerJunio C Hamano <gitster@pobox.com>
Fri, 27 Feb 2009 23:19:08 +0000 (15:19 -0800)
commite0cc81e63c7bb603545c90e47d4c6398f6347dfb
tree741727dccd231c6462186d55f4ebcc73ceff89df
parent7b9a5e276cc685788386f1dcbd6a201f9f18da16
builtin-remote: rename variables and eliminate redundant function call

- The variable name "remote" is used as both a "char *" and as a "struct
  remote *"; this is confusing, so rename the former to remote_name.

- Consistently refer to the refs returned by transport_get_remote_refs()
  as remote_refs.

- There is no need to call "sort_string_list(&branch_list)" as
  branch_list is populated via string_list_insert(), which maintains its
  order.

Signed-off-by: Jay Soffian <jaysoffian@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-remote.c