[Modify] Polish it

This commit is contained in:
sta 2017-09-08 19:33:12 +09:00
parent 0cb310e0aa
commit cd0227e845

View File

@ -149,9 +149,10 @@ namespace WebSocketSharp.Server
/// </value> /// </value>
public IEnumerable<string> InactiveIDs { public IEnumerable<string> InactiveIDs {
get { get {
foreach (var res in Broadping (WebSocketFrame.EmptyPingBytes, _waitTime)) foreach (var res in broadping (WebSocketFrame.EmptyPingBytes)) {
if (!res.Value) if (!res.Value)
yield return res.Key; yield return res.Key;
}
} }
} }