Prefix unused variables with underscore

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
pull/234/head
Matthias Beyer 5 years ago committed by Manos Pitsidianakis
parent 092f3694d2
commit 02bfda5eed
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -54,7 +54,7 @@ trait ListingTrait {
fn set_coordinates(&mut self, _: (usize, usize, Option<EnvelopeHash>));
fn draw_list(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context);
fn highlight_line(&mut self, grid: &mut CellBuffer, area: Area, idx: usize, context: &Context);
fn filter(&mut self, filter_term: &str, context: &Context) {}
fn filter(&mut self, _filter_term: &str, _context: &Context) {}
}
#[derive(Debug)]

Loading…
Cancel
Save