From bddf5bf1d14f12372915217b5934fff4500f670f Mon Sep 17 00:00:00 2001 From: David Knaack Date: Wed, 16 Jun 2021 21:23:14 +0200 Subject: [PATCH] fix(clippy): fix new lint warning (#2803) --- src/modules/mod.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/modules/mod.rs b/src/modules/mod.rs index 4e06309c..674a0fc5 100644 --- a/src/modules/mod.rs +++ b/src/modules/mod.rs @@ -146,16 +146,14 @@ pub fn handle<'a>(module: &str, context: &'a Context) -> Option> { let elapsed = start.elapsed(); log::trace!("Took {:?} to compute module {:?}", elapsed, module); - if elapsed.as_millis() < 1 { + if elapsed.as_millis() >= 1 { // If we take less than 1ms to compute a None, then we will not return a module at all // if we have a module: default duration is 0 so no need to change it - m - } else { // if we took more than 1ms we want to report that and so--in case we have None currently-- // need to create an empty module just to hold the duration for that case m.get_or_insert_with(|| context.new_module(module)).duration = elapsed; - m } + m } pub fn description(module: &str) -> &'static str {