More warnings resolved.

This commit is contained in:
2023-08-08 07:51:05 +00:00
parent aa836e859d
commit e49f01cd68
8 changed files with 23 additions and 23 deletions

View File

@ -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;
}