Skip to content

Commit

Permalink
Merge pull request #17 from natsnudasoft/remove-class-constraint
Browse files Browse the repository at this point in the history
Remove class constraint from IsNotNull

+semver: patch
  • Loading branch information
natsnudasoft committed May 20, 2017
2 parents 2094ebb + 7d02f7e commit ecc9267
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/NatsnudaLibrary/ParameterValidation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public static class ParameterValidation
/// <see langword="null"/>.</exception>
[ContractArgumentValidator]
public static void IsNotNull<T>([ValidatedNotNull]T value, string valueName)
where T : class
{
if (value == null)
{
Expand Down

0 comments on commit ecc9267

Please sign in to comment.