mirror of
https://github.com/znc/znc.git
synced 2026-05-06 13:32:36 +02:00
modules: cleanup superfluous virtual keywords
These methods are not overriding anything or being overridden anywhere.
This commit is contained in:
@@ -81,14 +81,14 @@ public:
|
||||
virtual void ReadLine(const CS_STRING & sLine) override;
|
||||
virtual void Disconnected() override;
|
||||
|
||||
virtual void AddLine(const CString & sLine)
|
||||
void AddLine(const CString & sLine)
|
||||
{
|
||||
m_vBuffer.insert(m_vBuffer.begin(), sLine);
|
||||
if (m_vBuffer.size() > 200)
|
||||
m_vBuffer.pop_back();
|
||||
}
|
||||
|
||||
virtual void DumpBuffer()
|
||||
void DumpBuffer()
|
||||
{
|
||||
if (m_vBuffer.empty()) {
|
||||
// Always show a message to the user, so he knows
|
||||
@@ -386,7 +386,7 @@ public:
|
||||
return(CONTINUE);
|
||||
}
|
||||
|
||||
virtual void RemoveMarker(const CString & sNick)
|
||||
void RemoveMarker(const CString & sNick)
|
||||
{
|
||||
map< CString,pair< u_long,u_short > >::iterator it = m_siiWaitingChats.find(sNick);
|
||||
if (it != m_siiWaitingChats.end())
|
||||
|
||||
Reference in New Issue
Block a user