Skip to content

Commit

Permalink
[#403] #EXTEND 'assemblyName: DotNet.Testcontainers; function: Testco…
Browse files Browse the repository at this point in the history
…ntainersBuilder'

{Fix SonarQube findings.}
  • Loading branch information
HofmeisterAn committed Oct 20, 2021
1 parent 0ca0202 commit 002cbd8
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/DotNet.Testcontainers/Volumes/DockerVolume.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace DotNet.Testcontainers.Volumes
{
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;

Expand All @@ -24,9 +23,6 @@ internal sealed class DockerVolume : IDockerVolume
/// <inheritdoc />
public string Name { get; }

/// <inheritdoc />
public IDictionary<string, string> Labels { get; } = new Dictionary<string, string>();

/// <inheritdoc />
public Task CreateAsync(CancellationToken ct = default)
{
Expand All @@ -38,11 +34,5 @@ public Task DeleteAsync(CancellationToken ct = default)
{
return Task.CompletedTask;
}

/// <inheritdoc />
public ValueTask DisposeAsync()
{
return default;
}
}
}

0 comments on commit 002cbd8

Please sign in to comment.