Remove unnecessary trailing semicolom (#3619)

This commit is contained in:
Quentin Le Sceller 2021-03-29 03:55:33 -04:00 committed by GitHub
parent 4a09fed36c
commit 0acf380320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -103,7 +103,7 @@ impl TableViewItem<PeerColumn> for PeerStats {
let other_sum = other_recv_bytes + other_sent_bytes;
curr_sum.cmp(&other_sum)
};
}
let sort_by_addr = || self.addr.cmp(&other.addr);