OSDN Git Service

unpack-trees.c: verify_uptodate: remove dead code
authorSven Verdoolaege <skimo@kotnet.org>
Sun, 20 May 2007 17:26:37 +0000 (19:26 +0200)
committerJunio C Hamano <junkio@cox.net>
Sun, 20 May 2007 21:40:41 +0000 (14:40 -0700)
This code was killed by commit fcc387db9bc453dc7e07a262873481af2ee9e5c8.

Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
unpack-trees.c

index ee10eea..6d1f0d1 100644 (file)
@@ -452,10 +452,6 @@ static void verify_uptodate(struct cache_entry *ce,
                        return;
                errno = 0;
        }
-       if (o->reset) {
-               ce->ce_flags |= htons(CE_UPDATE);
-               return;
-       }
        if (errno == ENOENT)
                return;
        die("Entry '%s' not uptodate. Cannot merge.", ce->name);