[Modify] Polish it

This commit is contained in:
sta 2017-02-28 16:41:23 +09:00
parent 5f99e99a45
commit a553653231

View File

@ -1955,7 +1955,9 @@ namespace WebSocketSharp
/// </param>
public static string UrlDecode (this string value)
{
return value != null && value.Length > 0 ? HttpUtility.UrlDecode (value) : value;
return value != null && value.Length > 0
? HttpUtility.UrlDecode (value)
: value;
}
/// <summary>