CLI2: Removed unused ::add method

This commit is contained in:
Paul Beckingham 2015-06-20 09:28:15 -07:00
parent 2c4cd8b06a
commit 17f4b50aa7
2 changed files with 0 additions and 13 deletions

View file

@ -438,18 +438,6 @@ void CLI2::analyze ()
} }
/* /*
////////////////////////////////////////////////////////////////////////////////
// Capture a single argument, and recalc everything.
void CLI2::add (const std::string& arg)
{
// Clean the ID/UUID lists, because they will be rebuilt.
_id_ranges.clear ();
_uuid_list.clear ();
addArg (arg);
analyze ();
}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// There are situations where a context filter is applied. This method // There are situations where a context filter is applied. This method
// determines whether one applies, and if so, applies it. // determines whether one applies, and if so, applies it.

View file

@ -82,7 +82,6 @@ public:
void add (const std::string&); void add (const std::string&);
void analyze (); void analyze ();
/* /*
void add (const std::string&);
void addContextFilter (); void addContextFilter ();
void addRawFilter (const std::string& arg); void addRawFilter (const std::string& arg);
void applyOverrides (); void applyOverrides ();