[Javadoc]: Remove lucene tags (#36834)

Remove lucene tags as they break gradle javadoc task

Relates #36794
This commit is contained in:
Ignacio Vera 2018-12-19 15:29:09 +01:00 committed by GitHub
parent d43cbdab97
commit a34a3532ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 0 additions and 7 deletions

View File

@ -52,7 +52,6 @@ import static org.apache.lucene.geo.GeoEncodingUtils.encodeLongitude;
* @see PointValues * @see PointValues
* @see LatLonDocValuesField * @see LatLonDocValuesField
* *
* @lucene.experimental
*/ */
public class XLatLonShape { public class XLatLonShape {
public static final int BYTES = LatLonPoint.BYTES; public static final int BYTES = LatLonPoint.BYTES;

View File

@ -26,7 +26,6 @@ import org.apache.lucene.index.PointValues.Relation;
* <p>The field must be indexed using * <p>The field must be indexed using
* {@link XLatLonShape#createIndexableFields} added per document. * {@link XLatLonShape#createIndexableFields} added per document.
* *
* @lucene.experimental
**/ **/
final class XLatLonShapeBoundingBoxQuery extends XLatLonShapeQuery { final class XLatLonShapeBoundingBoxQuery extends XLatLonShapeQuery {
final XRectangle2D rectangle2D; final XRectangle2D rectangle2D;

View File

@ -41,7 +41,6 @@ import java.util.Arrays;
* <p>The field must be indexed using * <p>The field must be indexed using
* {@link XLatLonShape#createIndexableFields} added per document. * {@link XLatLonShape#createIndexableFields} added per document.
* *
* @lucene.experimental
**/ **/
final class XLatLonShapeLineQuery extends XLatLonShapeQuery { final class XLatLonShapeLineQuery extends XLatLonShapeQuery {
final Line[] lines; final Line[] lines;

View File

@ -31,7 +31,6 @@ import java.util.Arrays;
* <p>The field must be indexed using * <p>The field must be indexed using
* {@link XLatLonShape#createIndexableFields} added per document. * {@link XLatLonShape#createIndexableFields} added per document.
* *
* @lucene.experimental
**/ **/
final class XLatLonShapePolygonQuery extends XLatLonShapeQuery { final class XLatLonShapePolygonQuery extends XLatLonShapeQuery {
final Polygon[] polygons; final Polygon[] polygons;

View File

@ -45,7 +45,6 @@ import java.util.Objects;
* *
* Note: this class implements the majority of the INTERSECTS, WITHIN, DISJOINT relation logic * Note: this class implements the majority of the INTERSECTS, WITHIN, DISJOINT relation logic
* *
* @lucene.experimental
**/ **/
abstract class XLatLonShapeQuery extends Query { abstract class XLatLonShapeQuery extends Query {
/** field name */ /** field name */

View File

@ -38,7 +38,6 @@ import static org.apache.lucene.geo.GeoUtils.orient;
/** /**
* 2D rectangle implementation containing spatial logic. * 2D rectangle implementation containing spatial logic.
* *
* @lucene.internal
*/ */
public class XRectangle2D { public class XRectangle2D {
final byte[] bbox; final byte[] bbox;

View File

@ -64,7 +64,6 @@ import static org.apache.lucene.geo.GeoUtils.orient;
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
* THIS SOFTWARE. * THIS SOFTWARE.
* *
* @lucene.experimental
*/ */
public final class XTessellator { public final class XTessellator {
// this is a dumb heuristic to control whether we cut over to sorted morton values // this is a dumb heuristic to control whether we cut over to sorted morton values