populateFetchOptions: remove redundant initialization

This is already preformed by git_fetch_init_options()
This commit is contained in:
Jesse Hathaway 2020-07-10 19:39:34 +00:00
parent db78e55d45
commit dea861eb42
1 changed files with 0 additions and 1 deletions

View File

@ -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)
}