Merge branch 'sb/submodule-helper-remove-cruft'
authorJunio C Hamano <gitster@pobox.com>
Tue, 30 Oct 2018 06:43:43 +0000 (15:43 +0900)
committerJunio C Hamano <gitster@pobox.com>
Tue, 30 Oct 2018 06:43:43 +0000 (15:43 +0900)
Code clean-up.

* sb/submodule-helper-remove-cruft:
builtin/submodule--helper: remove debugging leftover tracing

1  2 
builtin/submodule--helper.c
index 80474c3ff5651f06df3394cb3f059ac0d7cb19f8,a131cd29cdd5cfdecde4bbe9d09bd1883fa6b590..8e1db55e136c368f06c4029b4cd2c888400bb81a
@@@ -792,7 -792,7 +792,7 @@@ static void status_submodule(const cha
                         path, NULL);
  
        git_config(git_diff_basic_config, NULL);
 -      init_revisions(&rev, prefix);
 +      repo_init_revisions(the_repository, &rev, prefix);
        rev.abbrev = 0;
        diff_files_args.argc = setup_revisions(diff_files_args.argc,
                                               diff_files_args.argv,
@@@ -1457,7 -1457,6 +1457,6 @@@ static void determine_submodule_update_
        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);
                        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