CLI2: Removed unused ::isCommand method

This commit is contained in:
Paul Beckingham 2015-06-20 09:43:31 -07:00
parent e67b812d35
commit 072f966099
2 changed files with 0 additions and 8 deletions

View file

@ -2011,13 +2011,6 @@ bool CLI2::isTerminator (const std::string& raw) const
return raw == "--"; return raw == "--";
} }
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isCommand (const std::string& raw) const
{
std::string canonical;
return canonicalize (canonical, "cmd", raw);
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// Valid tag // Valid tag
// - Length > 1 // - Length > 1

View file

@ -130,7 +130,6 @@ private:
void decomposeModSubstitutions (); void decomposeModSubstitutions ();
bool isTerminator (const std::string&) const; bool isTerminator (const std::string&) const;
bool isCommand (const std::string&) const;
bool isTag (const std::string&) const; bool isTag (const std::string&) const;
bool isUUIDList (const std::string&) const; bool isUUIDList (const std::string&) const;
bool isPattern (const std::string&) const; bool isPattern (const std::string&) const;