diff options
Diffstat (limited to 'src/ruleparser.cpp')
-rw-r--r-- | src/ruleparser.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ruleparser.cpp b/src/ruleparser.cpp index 6d3e417..da05749 100644 --- a/src/ruleparser.cpp +++ b/src/ruleparser.cpp @@ -53,7 +53,6 @@ void Rules::load() QRegExp matchLine("match\\s+(.*)", Qt::CaseInsensitive); QRegExp matchRepoLine("repository\\s+(\\S+)", Qt::CaseInsensitive); QRegExp matchBranchLine("branch\\s+(\\S+)", Qt::CaseInsensitive); - QRegExp matchPathLine("path\\s+(.*)", Qt::CaseInsensitive); QRegExp matchRevLine("(min|max) revision (\\d+)", Qt::CaseInsensitive); QTextStream s(&file); @@ -93,9 +92,6 @@ void Rules::load() } else if (matchBranchLine.exactMatch(line)) { match.branch = matchBranchLine.cap(1); continue; - } else if (matchPathLine.exactMatch(line)) { - match.path = matchPathLine.cap(1); - continue; } else if (matchRevLine.exactMatch(line)) { if (matchRevLine.cap(1) == "min") match.minRevision = matchRevLine.cap(2).toInt(); |