Remove 🆖 comments (#7877)

Noticed several instances of commented out code that should just be
deleted. Also a comment on `eval_external` that was incorrect. All gone
now.
This commit is contained in:
Reilly Wood
2023-01-27 05:48:31 -08:00
committed by GitHub
parent 2849e28c2b
commit 9ae2e528c5
6 changed files with 1 additions and 95 deletions

View File

@ -616,7 +616,6 @@ impl PipelineData {
// to create the table value that will be printed in the terminal
let config = engine_state.get_config();
// let stdout = std::io::stdout();
if let PipelineData::ExternalStream {
stdout: stream,
@ -626,12 +625,6 @@ impl PipelineData {
} = self
{
return print_if_stream(stream, stderr_stream, to_stderr, exit_code);
/*
if let Ok(exit_code) = print_if_stream(stream, stderr_stream, to_stderr, exit_code) {
return Ok(exit_code);
}
return Ok(0);
*/
}
if let Some(decl_id) = engine_state.find_decl("table".as_bytes(), &[]) {