1
0
Fork 0

Remove unused variable

pull/3913/head
Hannes Van De Vreken 2015-04-07 10:36:11 +02:00
parent f10c714751
commit b85cb7df82
1 changed files with 0 additions and 1 deletions

View File

@ -416,7 +416,6 @@ class VersionParser
$lowVersion = $this->normalize($matches['from']); $lowVersion = $this->normalize($matches['from']);
$lowerBound = new VersionConstraint('>=', $lowVersion . $lowStabilitySuffix); $lowerBound = new VersionConstraint('>=', $lowVersion . $lowStabilitySuffix);
$highVersion = $matches[10];
if ((!empty($matches[11]) && !empty($matches[12])) || !empty($matches[14]) || !empty($matches[16])) { if ((!empty($matches[11]) && !empty($matches[12])) || !empty($matches[14]) || !empty($matches[16])) {
$highVersion = $this->normalize($matches['to']); $highVersion = $this->normalize($matches['to']);
$upperBound = new VersionConstraint('<=', $highVersion); $upperBound = new VersionConstraint('<=', $highVersion);