X-Git-Url: http://andersk.mit.edu/gitweb/svn-all-fast-export.git/blobdiff_plain/9fa82b403b5fef362b36d9f3ad199fd016c2ee96..f97a8dff0675251aadc60d1c06ce5315eae2c36b:/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();