Remove ModeParser::LastParseTranslate and GetLastParseTranslate()

This commit is contained in:
Attila Molnar 2014-09-03 14:31:00 +02:00
parent 626005fe12
commit 3427e32cc1
2 changed files with 0 additions and 5 deletions

View File

@ -577,7 +577,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
* Use GetLastParse() to get this value, to be used for display purposes.
*/
std::string LastParse;
std::vector<TranslateType> LastParseTranslate;
unsigned int sent[256];
@ -641,7 +640,6 @@ class CoreExport ModeParser : public fakederef<ModeParser>
* @return Last parsed string, as seen by users.
*/
const std::string& GetLastParse() const { return LastParse; }
const std::vector<TranslateType>& GetLastParseTranslate() { return LastParseTranslate; }
/** Add a mode to the mode parser.
* Throws a ModuleException if the mode cannot be added.

View File

@ -373,7 +373,6 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user,
ModeType type = targetchannel ? MODETYPE_CHANNEL : MODETYPE_USER;
LastParse.clear();
LastParseTranslate.clear();
LastChangeList.clear();
if ((!targetchannel) && ((!targetuser) || (IS_SERVER(targetuser))))
@ -407,7 +406,6 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user,
std::string output_mode;
std::string output_parameters;
LastParseTranslate.push_back(TR_TEXT);
bool adding = true;
char output_pm = '\0'; // current output state, '+' or '-'
@ -470,7 +468,6 @@ void ModeParser::Process(const std::vector<std::string>& parameters, User* user,
{
output_parameters.push_back(' ');
output_parameters.append(parameter);
LastParseTranslate.push_back(mh->GetTranslateType());
}
LastChangeList.push(mh, adding, parameter);