Skip to content

Commit

Permalink
Removed <inheritdoc/>
Browse files Browse the repository at this point in the history
  • Loading branch information
vladperchi committed Mar 27, 2022
1 parent 1788960 commit 5dc2db0
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public class OrderByConverter :
IValueConverter<string, string[]>,
IValueConverter<string[], string>
{
/// <inheritdoc/>
public string[] Convert(string orderBy, ResolutionContext context = null)
{
if (!string.IsNullOrWhiteSpace(orderBy))
Expand All @@ -30,7 +29,6 @@ public string[] Convert(string orderBy, ResolutionContext context = null)
return Array.Empty<string>();
}

/// <inheritdoc/>
public string Convert(string[] orderBy, ResolutionContext context = null) => orderBy?.Any() == true ? string.Join(",", orderBy) : null;
}
}

0 comments on commit 5dc2db0

Please sign in to comment.