mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Remove ModeParser::LastParseTranslate and GetLastParseTranslate()
This commit is contained in:
parent
626005fe12
commit
3427e32cc1
@ -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.
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user