Remove unused LintError::equals()

Change-Id: I0d0d743119fee8a95627c365e1b2f45b8fcf67e7
This commit is contained in:
Kunal Mehta 2016-12-02 07:56:19 -08:00
parent 3a03781a70
commit a50398d4ce

View file

@ -70,16 +70,6 @@ class LintError {
? $params['templateInfo'] : null;
}
/**
* @param LintError $other
* @return bool
*/
public function equals( LintError $other ) {
return $this->category === $other->category
&& $this->params === $other->params
&& $this->location === $other->location;
}
/**
* Unique id to identify this error, for internal
* purposes