WebService: fixed minor issue in ResolvePtrTopClientsAsync()

This commit is contained in:
Shreyas Zare
2021-01-02 17:31:09 +05:30
parent 2d708149e7
commit afe85655ea

View File

@@ -2640,8 +2640,6 @@ namespace DnsServerCore
resolverTasks.Add(ResolvePtrAsync(item.Key));
}
await Task.WhenAll(resolverTasks);
Dictionary<string, string> result = new Dictionary<string, string>();
foreach (Task<KeyValuePair<string, string>> resolverTask in resolverTasks)