Skip to content

Commit 2238cc5

Browse files
committed
Removed unused variable and fixed doc typo.
1 parent ce7565c commit 2238cc5

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/Cofoundry.Plugins.Azure/AzureBlobFileService.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ public class AzureBlobFileService : IFileStoreService
2222

2323
private readonly CloudBlobClient _blobClient;
2424
private static ConcurrentDictionary<string, byte> _initializedContainers = new ConcurrentDictionary<string, byte>();
25-
private static ConcurrentBag<string> _initializedContainers2 = new ConcurrentBag<string>();
2625

2726
public AzureBlobFileService(
2827
AzureSettings settings
@@ -44,11 +43,11 @@ AzureSettings settings
4443
#region public methods
4544

4645
/// <summary>
47-
/// Determins if the specified file exists in the container
46+
/// Determins if the specified file exists in the container.
4847
/// </summary>
49-
/// <param name="containerName">The name of the container to look for the filew</param>
50-
/// <param name="fileName">Name of the file to look for</param>
51-
/// <returns>True if the file exists; otherwise false</returns>
48+
/// <param name="containerName">The name of the container to look for the file.</param>
49+
/// <param name="fileName">Name of the file to look for.</param>
50+
/// <returns>True if the file exists; otherwise false.</returns>
5251
public async Task<bool> ExistsAsync(string containerName, string fileName)
5352
{
5453
var container = await GetBlobContainerAsync(containerName);

0 commit comments

Comments
 (0)