summaryrefslogtreecommitdiff
path: root/builtin/submodule--helper.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-10-30 06:43:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-10-30 06:43:43 (GMT)
commit7002cb97522418d978b308d8bce6446b2cc0fd79 (patch)
treecd39e5450a2fe080556d53fb00359d57d03aca03 /builtin/submodule--helper.c
parent620b00e1671a8b4c1b00dbea8a0e81a657f28ce1 (diff)
parent48b91d971404afd79446810b22088b91adbb4ed2 (diff)
downloadgit-7002cb97522418d978b308d8bce6446b2cc0fd79.zip
git-7002cb97522418d978b308d8bce6446b2cc0fd79.tar.gz
git-7002cb97522418d978b308d8bce6446b2cc0fd79.tar.bz2
Merge branch 'sb/submodule-helper-remove-cruft'
Code clean-up. * sb/submodule-helper-remove-cruft: builtin/submodule--helper: remove debugging leftover tracing
Diffstat (limited to 'builtin/submodule--helper.c')
-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 80474c3..8e1db55 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