use swap_remove instead of remove in a few places

`swap_remove` is faster if we don't care about the order (O(1))

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-06-01 00:22:50 -04:00
parent b63937af0b
commit f6fa2a4f65
3 changed files with 4 additions and 4 deletions

View file

@ -1078,7 +1078,7 @@ impl Service {
.into_iter()
.position(|server_name| server_is_ours(&server_name))
{
servers.remove(server_index);
servers.swap_remove(server_index);
}
servers.sort_unstable();