File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/Cofoundry.Plugins.Azure Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ public class AzureBlobFileService : IFileStoreService
22
22
23
23
private readonly CloudBlobClient _blobClient ;
24
24
private static ConcurrentDictionary < string , byte > _initializedContainers = new ConcurrentDictionary < string , byte > ( ) ;
25
- private static ConcurrentBag < string > _initializedContainers2 = new ConcurrentBag < string > ( ) ;
26
25
27
26
public AzureBlobFileService (
28
27
AzureSettings settings
@@ -44,11 +43,11 @@ AzureSettings settings
44
43
#region public methods
45
44
46
45
/// <summary>
47
- /// Determins if the specified file exists in the container
46
+ /// Determins if the specified file exists in the container.
48
47
/// </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>
52
51
public async Task < bool > ExistsAsync ( string containerName , string fileName )
53
52
{
54
53
var container = await GetBlobContainerAsync ( containerName ) ;
You can’t perform that action at this time.
0 commit comments