CLI2: Removed unused ::isUUID method

This commit is contained in:
Paul Beckingham 2015-06-20 09:36:25 -07:00
parent c32106e107
commit 3782f37d9d
2 changed files with 0 additions and 16 deletions

View file

@ -2058,21 +2058,6 @@ bool CLI2::isUUIDList (const std::string& raw) const
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isUUID (const std::string& raw) const
{
// UUIDs have a limited character set.
if (raw.find_first_not_of ("0123456789abcdefABCDEF-") == std::string::npos)
{
Nibbler n (raw);
std::string token;
if (n.getUUID (token) || n.getPartialUUID (token))
return true;
}
return false;
}
////////////////////////////////////////////////////////////////////////////////
bool CLI2::isIDSequence (const std::string& raw) const
{