From: Nguyễn Thái Ngọc Duy Date: Sun, 16 Dec 2012 04:15:25 +0000 (+0700) Subject: cache-tree: remove dead i-t-a code in verify_cache() X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dbc3904ebc604bf5b818d9840b79228aacdd1343;p=git.git cache-tree: remove dead i-t-a code in verify_cache() This code is added in 331fcb5 (git add --intent-to-add: do not let an empty blob be committed by accident - 2008-11-28) to forbid committing when i-t-a entries are present. When we allow that, we forgot to remove this. Noticed-by: Junio C Hamano Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/cache-tree.c b/cache-tree.c index 28ed6574a..e2beab584 100644 --- a/cache-tree.c +++ b/cache-tree.c @@ -166,12 +166,8 @@ static int verify_cache(struct cache_entry **cache, fprintf(stderr, "...\n"); break; } - if (ce_stage(ce)) - fprintf(stderr, "%s: unmerged (%s)\n", - ce->name, sha1_to_hex(ce->sha1)); - else - fprintf(stderr, "%s: not added yet\n", - ce->name); + fprintf(stderr, "%s: unmerged (%s)\n", + ce->name, sha1_to_hex(ce->sha1)); } } if (funny)