summaryrefslogtreecommitdiff
path: root/src/modules/m_rline.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_rline.cpp')
-rw-r--r--src/modules/m_rline.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/modules/m_rline.cpp b/src/modules/m_rline.cpp
index 7ef766b7d..f4c675919 100644
--- a/src/modules/m_rline.cpp
+++ b/src/modules/m_rline.cpp
@@ -37,15 +37,6 @@ static bool added_zline = false;
class RLine : public XLine
{
public:
-
- /** Create a R-line.
- * @param s_time The set time
- * @param d The duration of the xline
- * @param src The sender of the xline
- * @param re The reason of the xline
- * @param regex Pattern to match with
- * @
- */
RLine(time_t s_time, unsigned long d, const std::string& src, const std::string& re, const std::string& regexs, dynamic_reference<RegexFactory>& rxfactory)
: XLine(s_time, d, src, re, "R")
, matchtext(regexs)
@@ -56,8 +47,6 @@ class RLine : public XLine
regex = rxfactory->Create(regexs);
}
- /** Destructor
- */
~RLine()
{
delete regex;