Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJameson Miller <jamill@microsoft.com>2013-10-18 22:56:24 +0400
committerJameson Miller <jamill@microsoft.com>2013-10-19 18:05:04 +0400
commitbd736e2d130bd441fe7e767d9a7289d720bd0aea (patch)
tree4e41f286a9373b3878debf9c5b36dad7d2836e90 /LibGit2Sharp/Repository.cs
parent981f43909ca79b3b9e5c5a34590d76ecd5c82e3f (diff)
Clean up cancellation patterns in callbacks and other small cleanups.
Diffstat (limited to 'LibGit2Sharp/Repository.cs')
-rw-r--r--LibGit2Sharp/Repository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp/Repository.cs b/LibGit2Sharp/Repository.cs
index 93b726f8..e9914562 100644
--- a/LibGit2Sharp/Repository.cs
+++ b/LibGit2Sharp/Repository.cs
@@ -560,7 +560,7 @@ namespace LibGit2Sharp
{
CheckoutCallbacks checkoutCallbacks = CheckoutCallbacks.GenerateCheckoutCallbacks(onCheckoutProgress, null);
- var callbacks = new RemoteCallbacks(null, onTransferProgress, null, null, credentials);
+ var callbacks = new RemoteCallbacks(null, onTransferProgress, null, credentials);
GitRemoteCallbacks gitCallbacks = callbacks.GenerateCallbacks();
var cloneOpts = new GitCloneOptions