[Modify] Polish it

This commit is contained in:
sta 2019-01-29 20:57:45 +09:00
parent 1880af98fc
commit 846dd0b7d2

View File

@ -971,7 +971,9 @@ namespace WebSocketSharp
}
}
internal static List<TSource> ToList<TSource> (this IEnumerable<TSource> source)
internal static List<TSource> ToList<TSource> (
this IEnumerable<TSource> source
)
{
return new List<TSource> (source);
}