Skip to content

Commit

Permalink
Remove nameof to avoid issue on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink committed Jun 15, 2022
1 parent 9cc75d7 commit 6d3fee0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ public string Serialize<T>(T data, int version = 1)
}

/// <inheritdoc/>
[return: NotNullIfNotNull(nameof(obj))]
[return: NotNullIfNotNull("obj")]
public T? Clone<T>(T? obj)
{
if (obj == null)
Expand Down

0 comments on commit 6d3fee0

Please sign in to comment.