diff options
author | Sergey Vlasov <vsu@altlinux.ru> | 2005-09-21 20:34:19 +0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-09-22 21:52:11 -0700 |
commit | 2449696bcd8b458ae604c35898ecab7271b97b40 (patch) | |
tree | eaa92c9bb84995e22a312ef39e91e9d970ae1d29 /fetch.c | |
parent | 7b64d06b2e74612a0970c8563845cb9ee34724af (diff) | |
download | git-2449696bcd8b458ae604c35898ecab7271b97b40.tar.gz |
[PATCH] fetch.c: Remove redundant test of TO_SCAN in process()
If the SEEN flag was not set, the TO_SCAN flag cannot be set,
therefore testing it is pointless.
Signed-off-by: Sergey Vlasov <vsu@altlinux.ru>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'fetch.c')
-rw-r--r-- | fetch.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -136,8 +136,6 @@ static int process(struct object *obj) if (has_sha1_file(obj->sha1)) { parse_object(obj->sha1); /* We already have it, so we should scan it now. */ - if (obj->flags & TO_SCAN) - return 0; obj->flags |= TO_SCAN; } else { if (obj->flags & COMPLETE) |