From 56c04ff5b6025e18eb63c2dc832af40553e93e58 Mon Sep 17 00:00:00 2001 From: Odin Dutton Date: Tue, 20 Aug 2019 13:11:01 +1000 Subject: [PATCH] Remove unneeded TODOs These commands have been confirmed to have no arguments. --- src/commands/debug.rs | 1 - src/commands/ps.rs | 1 - src/commands/shells.rs | 1 - src/commands/sort_by.rs | 1 - 4 files changed, 4 deletions(-) diff --git a/src/commands/debug.rs b/src/commands/debug.rs index d5f84afa4..9562aee38 100644 --- a/src/commands/debug.rs +++ b/src/commands/debug.rs @@ -18,7 +18,6 @@ impl WholeStreamCommand for Debug { } fn signature(&self) -> Signature { - // TODO: Signature? Signature::build("debug") } } diff --git a/src/commands/ps.rs b/src/commands/ps.rs index 4d4cfb93d..804fd99d3 100644 --- a/src/commands/ps.rs +++ b/src/commands/ps.rs @@ -20,7 +20,6 @@ impl WholeStreamCommand for PS { } fn signature(&self) -> Signature { - // TODO: Signature? Signature::build("ps") } } diff --git a/src/commands/shells.rs b/src/commands/shells.rs index 5b7528bc4..9aa65bdfc 100644 --- a/src/commands/shells.rs +++ b/src/commands/shells.rs @@ -19,7 +19,6 @@ impl WholeStreamCommand for Shells { } fn signature(&self) -> Signature { - // TODO: Signature? Signature::build("shells") } } diff --git a/src/commands/sort_by.rs b/src/commands/sort_by.rs index 2c2272812..52d97a595 100644 --- a/src/commands/sort_by.rs +++ b/src/commands/sort_by.rs @@ -18,7 +18,6 @@ impl WholeStreamCommand for SortBy { } fn signature(&self) -> Signature { - // TODO: Signature? Signature::build("sort-by") } }