cache-tree: avoid an unnecessary check
commit5aca024a74e900bd9bc2c14a8e99494063ea4cc5
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Fri, 23 Feb 2024 08:34:24 +0000 (23 08:34 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 23 Feb 2024 18:19:40 +0000 (23 10:19 -0800)
treeecbe991480dc8192c841abb243d4a174b0b38f68
parentaa9f618909d30e3f0c7181243e89a81220507e6e
cache-tree: avoid an unnecessary check

The first thing the `parse_tree()` function does is to return early if
the tree has already been parsed. Therefore we do not need to guard the
`parse_tree()` call behind a check of that flag.

As of time of writing, there are no other instances of this in Git's
code bases: whenever the `parsed` flag guards a `parse_tree()` call, it
guards more than just that call.

Suggested-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache-tree.c