summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-10-30 15:43:43 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-10-30 15:43:43 +0900
commit7002cb97522418d978b308d8bce6446b2cc0fd79 (patch)
treecd39e5450a2fe080556d53fb00359d57d03aca03
parentMerge branch 'js/pack-objects-mutex-init-fix' (diff)
parentbuiltin/submodule--helper: remove debugging leftover tracing (diff)
downloadtgif-7002cb97522418d978b308d8bce6446b2cc0fd79.tar.xz
Merge branch 'sb/submodule-helper-remove-cruft'
Code clean-up. * sb/submodule-helper-remove-cruft: builtin/submodule--helper: remove debugging leftover tracing
-rw-r--r--builtin/submodule--helper.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/builtin/submodule--helper.c b/builtin/submodule--helper.c
index 80474c3ff5..8e1db55e13 100644
--- a/builtin/submodule--helper.c
+++ b/builtin/submodule--helper.c
@@ -1457,7 +1457,6 @@ static void determine_submodule_update_strategy(struct repository *r,
key = xstrfmt("submodule.%s.update", sub->name);
if (update) {
- trace_printf("parsing update");
if (parse_submodule_update_strategy(update, out) < 0)
die(_("Invalid update mode '%s' for submodule path '%s'"),
update, path);
@@ -1466,7 +1465,6 @@ static void determine_submodule_update_strategy(struct repository *r,
die(_("Invalid update mode '%s' configured for submodule path '%s'"),
val, path);
} else if (sub->update_strategy.type != SM_UPDATE_UNSPECIFIED) {
- trace_printf("loaded thing");
out->type = sub->update_strategy.type;
out->command = sub->update_strategy.command;
} else