Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
wcampbell0x2a committed Nov 23, 2023
1 parent 411b5f1 commit 22e0f7d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/src/radar/radar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -716,10 +716,7 @@ fn draw(

// render tabs
let airplane_len = format!("Airplanes({})", adsb_airplanes.len());
let titles = ["Map", "Coverage", &airplane_len, "Stats", "Help"]
.iter()
.copied()
.collect();
let titles = vec!["Map", "Coverage", &airplane_len, "Stats", "Help"];

let mut view_type = "";

Expand Down

0 comments on commit 22e0f7d

Please sign in to comment.