[Modify] Polish it

master
sta 9 years ago
parent b45a6572cd
commit 9ca05f707e

@ -1332,10 +1332,10 @@ namespace WebSocketSharp
/// </param>
public static bool IsEnclosedIn (this string value, char c)
{
return value != null &&
value.Length > 1 &&
value[0] == c &&
value[value.Length - 1] == c;
return value != null
&& value.Length > 1
&& value[0] == c
&& value[value.Length - 1] == c;
}
/// <summary>

Loading…
Cancel
Save