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;