Skip to content

Commit

Permalink
Merge pull request #72927 from CyrusNajmabadi/removeMethod
Browse files Browse the repository at this point in the history
Remove unused method
  • Loading branch information
CyrusNajmabadi authored Apr 8, 2024
2 parents 484116b + 1a83b8e commit 8fffb1b
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/Workspaces/Remote/ServiceHub/Host/ChecksumSynchronizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,6 @@ private readonly struct ChecksumSynchronizer(AssetProvider assetProvider)

private readonly AssetProvider _assetProvider = assetProvider;

public async ValueTask SynchronizeAssetsAsync(
AssetPath assetPath,
HashSet<Checksum> checksums,
Dictionary<Checksum, object>? results,
CancellationToken cancellationToken)
{
using (await s_gate.DisposableWaitAsync(cancellationToken).ConfigureAwait(false))
{
await _assetProvider.SynchronizeAssetsAsync(assetPath, checksums, results, cancellationToken).ConfigureAwait(false);
}
}

public async ValueTask SynchronizeSolutionAssetsAsync(Checksum solutionChecksum, CancellationToken cancellationToken)
{
using var _1 = PooledDictionary<Checksum, object>.GetInstance(out var checksumToObjects);
Expand Down

0 comments on commit 8fffb1b

Please sign in to comment.