Remove unused variable

This commit is contained in:
Matthias Beyer 2016-04-16 22:39:49 +02:00
parent 5300b09d79
commit df2f46f5bf

View file

@ -5,7 +5,7 @@ use libimagcounter::counter::Counter;
pub fn list(rt: &Runtime) { pub fn list(rt: &Runtime) {
rt.cli() rt.cli()
.subcommand_matches("list") .subcommand_matches("list")
.map(|scmd| { .map(|_| {
debug!("Found 'list' subcommand..."); debug!("Found 'list' subcommand...");
Counter::all_counters(rt.store()).map(|iterator| { Counter::all_counters(rt.store()).map(|iterator| {