LUCENE-8587: Fix the equals method of GeoComplexPolygon

This commit is contained in:
Karl Wright 2018-12-11 13:48:34 -05:00
parent 874937aba8
commit 2edf5adedc
1 changed files with 1 additions and 1 deletions

View File

@ -1777,7 +1777,7 @@ class GeoComplexPolygon extends GeoBasePolygon {
return false;
final GeoComplexPolygon other = (GeoComplexPolygon) o;
return super.equals(other) && testPoint1InSet == other.testPoint1InSet
&& testPoint1.equals(testPoint1)
&& testPoint1.equals(other.testPoint1)
&& pointsList.equals(other.pointsList);
}