fix: remove useless returns

This commit is contained in:
Alexis (Poliorcetics) Bourget 2023-05-07 09:42:52 +02:00
parent 3d70ba7f94
commit 900d6030e7
2 changed files with 2 additions and 2 deletions

View file

@ -485,7 +485,7 @@ impl CargoActor {
error.push_str(line);
error.push('\n');
return false;
false
};
let output = streaming_output(
self.stdout,

View file

@ -417,7 +417,7 @@ fn postfix_expr(
allow_calls = true;
block_like = BlockLike::NotBlock;
}
return (lhs, block_like);
(lhs, block_like)
}
fn postfix_dot_expr<const FLOAT_RECOVERY: bool>(