@@ -282,12 +282,12 @@ |
||
282 | 282 | public function equals(RangeDifference $other): bool |
283 | 283 | { |
284 | 284 | return |
285 | - $this->kind === $other->getKind() && |
|
286 | - $this->leftStart === $other->getLeftStart() && |
|
287 | - $this->leftLength === $other->getLeftLength() && |
|
288 | - $this->rightStart === $other->getRightStart() && |
|
289 | - $this->rightLength === $other->getRightLength() && |
|
290 | - $this->ancestorStart === $other->getAncestorStart() && |
|
285 | + $this->kind === $other->getKind() && |
|
286 | + $this->leftStart === $other->getLeftStart() && |
|
287 | + $this->leftLength === $other->getLeftLength() && |
|
288 | + $this->rightStart === $other->getRightStart() && |
|
289 | + $this->rightLength === $other->getRightLength() && |
|
290 | + $this->ancestorStart === $other->getAncestorStart() && |
|
291 | 291 | $this->ancestorLength === $other->getAncestorLength(); |
292 | 292 | } |
293 | 293 |