From dea861eb424785090f04ce23a661d9252edcb26f Mon Sep 17 00:00:00 2001 From: Jesse Hathaway Date: Fri, 10 Jul 2020 19:39:34 +0000 Subject: [PATCH] populateFetchOptions: remove redundant initialization This is already preformed by git_fetch_init_options() --- remote.go | 1 - 1 file changed, 1 deletion(-) diff --git a/remote.go b/remote.go index 9cfe121..14e94a2 100644 --- a/remote.go +++ b/remote.go @@ -697,7 +697,6 @@ func populateFetchOptions(options *C.git_fetch_options, opts *FetchOptions) { options.custom_headers = C.git_strarray{} options.custom_headers.count = C.size_t(len(opts.Headers)) options.custom_headers.strings = makeCStringsFromStrings(opts.Headers) - options.proxy_opts = C.git_proxy_options{} populateProxyOptions(&options.proxy_opts, &opts.ProxyOptions) }