Clippy and remove unused is_binary (#5879)

This commit is contained in:
JT
2022-06-26 08:20:28 +12:00
committed by GitHub
parent ef9b72d360
commit 575ddbd4ef
5 changed files with 18 additions and 28 deletions

View File

@ -23,10 +23,6 @@ pub trait Command: Send + Sync + CommandClone {
input: PipelineData,
) -> Result<PipelineData, ShellError>;
fn is_binary(&self) -> bool {
false
}
fn examples(&self) -> Vec<Example> {
Vec::new()
}