Skip to content

Commit b9f969e

Browse files
committed
remove unused arg
1 parent 843d1f8 commit b9f969e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Microsoft.DotNet.Darc/DarcLib/VirtualMonoRepo/JsonFileMerger.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ public async Task<bool> MergeJsonsAsync(
8383
sourceCurrentJson,
8484
targetRepo.Path,
8585
targetRepoJsonRelativePath,
86-
targetRepoCurrentRef,
87-
allowMissingFiles))
86+
targetRepoCurrentRef))
8887
{
8988
hasChanges = true;
9089
}

src/Microsoft.DotNet.Darc/DarcLib/VirtualMonoRepo/VmrVersionFileMerger.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ protected async Task<bool> DeleteFileIfRequiredAsync(
3131
string sourceRepoCurrentJson,
3232
NativePath repoPath,
3333
string filePath,
34-
string targetRepoCurrentRef,
35-
bool allowMissingFiles)
34+
string targetRepoCurrentRef)
3635
{
3736
if (sourceRepoPreviousJson != JsonFileMerger.EmptyJsonString
3837
&& sourceRepoCurrentJson == JsonFileMerger.EmptyJsonString

0 commit comments

Comments
 (0)