CLI2: Removed obsolete methods.

This commit is contained in:
Paul Beckingham 2015-06-14 09:13:39 -04:00
parent 1d4a532ea2
commit de23fc3972
2 changed files with 0 additions and 20 deletions

View file

@ -2176,24 +2176,6 @@ bool CLI2::isTerminator (const std::string& raw) const
return raw == "--";
}
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isRCOverride (const std::string& raw) const
{
if (raw.length () > 3 && raw.substr (0, 3) == "rc:")
return true;
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isConfigOverride (const std::string& raw) const
{
if (raw.length () > 3 && raw.substr (0, 3) == "rc.")
return true;
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isCommand (const std::string& raw) const
{

View file

@ -135,8 +135,6 @@ private:
void decomposeModSubstitutions ();
bool isTerminator (const std::string&) const;
bool isRCOverride (const std::string&) const;
bool isConfigOverride (const std::string&) const;
bool isCommand (const std::string&) const;
bool isTag (const std::string&) const;
bool isUUIDList (const std::string&) const;