diff options
author | Jeff King <peff@peff.net> | 2013-03-16 06:25:25 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-16 22:16:45 -0700 |
commit | a6eec1263883ce9787a354e1635b7b732e72c3c9 (patch) | |
tree | 9f59547733de1d18bc41d04e09ecdb98a942c47f /t/t8005-blame-i18n.sh | |
parent | upload-pack: use peel_ref for ref advertisements (diff) | |
download | tgif-a6eec1263883ce9787a354e1635b7b732e72c3c9.tar.xz |
upload-pack: drop lookup-before-parse optimization
When we receive a "have" line from the client, we want to
load the object pointed to by the sha1. However, we are
careful to do:
o = lookup_object(sha1);
if (!o || !o->parsed)
o = parse_object(sha1);
to avoid loading the object from disk if we have already
seen it. However, since ccdc603 (parse_object: try internal
cache before reading object db), parse_object already does
this optimization internally. We can just call parse_object
directly.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t8005-blame-i18n.sh')
0 files changed, 0 insertions, 0 deletions