Skip to content

Commit

Permalink
We shouldn't use the StringHelper class as it's obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Aug 15, 2019
1 parent 71ca85a commit fc914ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Skybrud.Essentials.Http/Collections/HttpQueryString.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void Set(string key, object value) {
/// </summary>
/// <returns>The query string as an URL encoded string.</returns>
public override string ToString() {
return string.Join("&", from pair in _values select StringUtils.UrlEncode(pair.Key) + "=" + StringHelper.UrlEncode(pair.Value));
return string.Join("&", from pair in _values select StringUtils.UrlEncode(pair.Key) + "=" + StringUtils.UrlEncode(pair.Value));
}

/// <summary>
Expand Down

0 comments on commit fc914ff

Please sign in to comment.