Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 1629cce

Browse files
authored
Be explicit that we're passing null
This argument starts off null but reflection will convert it to default(CancellationToken).
1 parent 41d8585 commit 1629cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.TeamFoundation.14/Services/VSGitServices.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public async Task Clone(
9090
var gitExt = serviceProvider.GetService<IGitActionsExt>();
9191
var cloneAsyncMethod = typeof(IGitActionsExt).GetMethod(nameof(IGitActionsExt.CloneAsync));
9292
Assumes.NotNull(cloneAsyncMethod);
93-
var cloneParameters = new object[] { cloneUrl, clonePath, recurseSubmodules, default, null };
93+
var cloneParameters = new object[] { cloneUrl, clonePath, recurseSubmodules, null, null };
9494
var cloneTask = (Task)cloneAsyncMethod.Invoke(gitExt, cloneParameters);
9595

9696
NavigateToHomePage(teamExplorer); // Show progress on Team Explorer - Home

0 commit comments

Comments
 (0)