Skip to content
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.

Commit

Permalink
Remove double null check (#5862)
Browse files Browse the repository at this point in the history
Address #5834
  • Loading branch information
stefannikolei authored and dougbu committed Feb 28, 2017
1 parent ae61c70 commit 0e914e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void Add(MediaTypeHeaderValue item)
throw new ArgumentNullException(nameof(item));
}

Add(item?.ToString());
Add(item.ToString());
}

/// <summary>
Expand Down

0 comments on commit 0e914e5

Please sign in to comment.