From f97a8dff0675251aadc60d1c06ce5315eae2c36b Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Mon, 24 Dec 2007 14:06:33 -0200 Subject: Support for pathless rules --- src/ruleparser.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/ruleparser.cpp') 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(); -- cgit v1.2.1