mirror of
https://github.com/furyfire/trueskill.git
synced 2025-04-19 04:14:28 +00:00
More warnings resolved.
This commit is contained in:
@ -318,11 +318,6 @@ class Matrix
|
||||
|
||||
public function equals(Matrix $otherMatrix): bool
|
||||
{
|
||||
// If one is null, but not both, return false.
|
||||
if ($otherMatrix == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (($this->rowCount != $otherMatrix->getRowCount()) || ($this->columnCount != $otherMatrix->getColumnCount())) {
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user