From c4366096d440570c84754c8751583ddf4748b6b2 Mon Sep 17 00:00:00 2001 From: Alan Rogers Date: Fri, 23 May 2014 00:28:12 +1000 Subject: [PATCH] Don't need to duplicate this code. --- src/diff.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/diff.c b/src/diff.c index db22e5ee3..00e6fef8f 100644 --- a/src/diff.c +++ b/src/diff.c @@ -200,12 +200,8 @@ static git_diff_delta *diff_delta__last_for_item( if (git_oid__cmp(&delta->new_file.id, &item->id) == 0) return delta; break; - case GIT_DELTA_UNTRACKED: - if (diff->strcomp(delta->new_file.path, item->path) == 0 && - git_oid__cmp(&delta->new_file.id, &item->id) == 0) - return delta; - break; case GIT_DELTA_UNREADABLE: + case GIT_DELTA_UNTRACKED: if (diff->strcomp(delta->new_file.path, item->path) == 0 && git_oid__cmp(&delta->new_file.id, &item->id) == 0) return delta;