LUCENE-7906: Add missing override, fixing javadoc

This commit is contained in:
Karl Wright 2017-08-03 11:26:32 -04:00
parent a381bdbaaa
commit c6ae049662
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@
package org.apache.lucene.spatial3d.geom;
/**
* GeoCompositeAreShape is a set of GeoAreaShape's, treated as a unit.
* GeoCompositeAreaShape is a set of GeoAreaShape's, treated as a unit.
*
* @lucene.experimental
*/
@ -37,6 +37,7 @@ public class GeoCompositeAreaShape extends GeoCompositeMembershipShape implement
shapes.add(shape);
}
@Override
public boolean intersects(GeoShape geoShape){
for(GeoShape inShape : shapes){
if (((GeoAreaShape)inShape).intersects(geoShape)){