Skip to content

Commit

Permalink
builtin-branch.c: remove unused code in append_ref() callback function
Browse files Browse the repository at this point in the history
We let for_each_ref() to feed all refs to append_ref() but we are only
ever interested in local or remote tracking branches.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Jul 23, 2008
1 parent 47629dc commit 0f31d68
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions builtin-branch.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ static const char * const builtin_branch_usage[] = {
NULL
};

#define REF_UNKNOWN_TYPE 0x00
#define REF_LOCAL_BRANCH 0x01
#define REF_REMOTE_BRANCH 0x02
#define REF_TAG 0x04

static const char *head;
static unsigned char head_sha1[20];
Expand Down Expand Up @@ -215,7 +213,7 @@ static int append_ref(const char *refname, const unsigned char *sha1, int flags,
{
struct ref_list *ref_list = (struct ref_list*)(cb_data);
struct ref_item *newitem;
int kind = REF_UNKNOWN_TYPE;
int kind;
int len;
static struct commit_list branch;

Expand All @@ -226,10 +224,8 @@ static int append_ref(const char *refname, const unsigned char *sha1, int flags,
} else if (!prefixcmp(refname, "refs/remotes/")) {
kind = REF_REMOTE_BRANCH;
refname += 13;
} else if (!prefixcmp(refname, "refs/tags/")) {
kind = REF_TAG;
refname += 10;
}
} else
return 0;

/* Filter with with_commit if specified */
if (!has_commit(sha1, ref_list->with_commit))
Expand Down

0 comments on commit 0f31d68

Please sign in to comment.