From ab17450820652ff951b07822bac4d3e03e033d31 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 8 Nov 2014 15:21:07 -0500 Subject: [PATCH] CLI - Code cleanup, removed ::getModifications. --- src/CLI.cpp | 10 ---------- src/CLI.h | 1 - 2 files changed, 11 deletions(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index ddcd051ec..87e5beb58 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -480,16 +480,6 @@ const std::vector CLI::getWords () return words; } -//////////////////////////////////////////////////////////////////////////////// -const std::vector CLI::getModifications () -{ - std::vector modifications; - - // TODO Processing here. - - return modifications; -} - //////////////////////////////////////////////////////////////////////////////// // Search for 'value' in _entities category, return canonicalized value. bool CLI::canonicalize ( diff --git a/src/CLI.h b/src/CLI.h index 68987c695..9478f26c3 100644 --- a/src/CLI.h +++ b/src/CLI.h @@ -79,7 +79,6 @@ public: void getDataLocation (Path&); const std::string getFilter (); const std::vector getWords (); - const std::vector getModifications (); bool canonicalize (std::string&, const std::string&, const std::string&) const; std::string getBinary () const; std::string getCommand () const;