ENHANCEMENT: No pairing object if pairing is dummy

This commit is contained in:
Jeroen De Meerleer 2019-05-01 19:56:49 +02:00
parent cfc1a514bf
commit 90a199b438
2 changed files with 3 additions and 2 deletions

View File

@ -90,5 +90,4 @@ class Round
{
$this->pairings = $pairings;
}
}

View File

@ -621,10 +621,12 @@ class Sws extends SwsModel
$pairing->setRound($x);
$offset += 2;
if (!($result == Result::none && $opponent == 0)) {
$sws->getTournament()->addPairing($pairing);
}
}
}
}
$sws->getTournament()->pairingsToRounds();
return $sws;