diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 97d31a03..20eaba93 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -197,11 +197,14 @@ namespace WebSocketSharp : stream.ToByteArray (); } - internal static bool Contains (this IEnumerable source, Func condition) + internal static bool Contains ( + this IEnumerable source, Func condition + ) { - foreach (T elm in source) + foreach (T elm in source) { if (condition (elm)) return true; + } return false; }