]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-submodule: remove unused is_zero_oid() function
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Sat, 11 Sep 2021 11:17:48 +0000 (13:17 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 12 Sep 2021 23:21:51 +0000 (16:21 -0700)
The is_zero_oid() function in git-submodule.sh has not been used since
e83e3333b57 (submodule: port submodule subcommand 'summary' from shell
to C, 2020-08-13), so we can remove it.

This was the last user of the sane_egrep() function in
git-sh-setup.sh. I'm not removing it in case some out-of-tree user
relied on it. Per the discussion that can be found upthread of [1].

1. https://lore.kernel.org/git/87tuiwjfvi.fsf@evledraar.gmail.com/

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-submodule.sh

index dbd2ec205037e062b6fb4ae52205bbf84e023001..aeb96c582431a1f21e13983802f74753c2d08301 100755 (executable)
@@ -63,11 +63,6 @@ isnumber()
        n=$(($1 + 0)) 2>/dev/null && test "$n" = "$1"
 }
 
-# Given a full hex object ID, is this the zero OID?
-is_zero_oid () {
-       echo "$1" | sane_egrep '^0+$' >/dev/null 2>&1
-}
-
 # Sanitize the local git environment for use within a submodule. We
 # can't simply use clear_local_git_env since we want to preserve some
 # of the settings from GIT_CONFIG_PARAMETERS.