Skip to content

Commit

Permalink
Remove dupe null check (#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerje authored Mar 25, 2020
1 parent c48fc0d commit ddb4b21
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/KubernetesClient/Kubernetes.WebSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,6 @@ public partial class Kubernetes
throw new ArgumentOutOfRangeException(nameof(command));
}

if (command == null)
{
throw new ArgumentNullException(nameof(command));
}

var commandArray = command.ToArray();
foreach (var c in commandArray)
{
Expand Down

0 comments on commit ddb4b21

Please sign in to comment.