mirror of https://github.com/apache/lucene.git
LUCENE-3795: remove @author tags
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3795_lsp_spatial_module@1291653 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a266e964e2
commit
57cc94df3f
|
@ -26,8 +26,6 @@ import java.util.Map;
|
|||
|
||||
/**
|
||||
* Factory for a SpatialContext.
|
||||
* is
|
||||
* @author dsmiley
|
||||
*/
|
||||
public abstract class SpatialContextFactory {
|
||||
protected Map<String, String> args;
|
||||
|
|
|
@ -20,9 +20,7 @@ package org.apache.lucene.spatial.base.context.simple;
|
|||
import org.apache.lucene.spatial.base.context.SpatialContext;
|
||||
import org.apache.lucene.spatial.base.context.SpatialContextFactory;
|
||||
|
||||
/**
|
||||
* @author dsmiley
|
||||
*/
|
||||
|
||||
public class SimpleSpatialContextFactory extends SpatialContextFactory {
|
||||
@Override
|
||||
protected SpatialContext newSpatialContext() {
|
||||
|
|
|
@ -19,9 +19,7 @@ package org.apache.lucene.spatial.base.distance;
|
|||
|
||||
import org.apache.lucene.spatial.base.shape.Point;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public abstract class AbstractDistanceCalculator implements DistanceCalculator {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -25,7 +25,6 @@ import static java.lang.Math.toRadians;
|
|||
|
||||
/**
|
||||
* A base class for a Distance Calculator that assumes a spherical earth model.
|
||||
* @author dsmiley
|
||||
*/
|
||||
public abstract class GeodesicSphereDistCalc extends AbstractDistanceCalculator {
|
||||
protected final double radius;
|
||||
|
|
|
@ -25,9 +25,7 @@ import org.apache.lucene.spatial.base.prefix.quad.QuadPrefixTree;
|
|||
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @author dsmiley
|
||||
*/
|
||||
|
||||
public abstract class SpatialPrefixTreeFactory {
|
||||
|
||||
private static final double DEFAULT_GEO_MAX_DETAIL_KM = 0.001;//1m
|
||||
|
|
|
@ -22,9 +22,7 @@ import org.apache.lucene.spatial.base.shape.SpatialRelation;
|
|||
import org.apache.lucene.spatial.base.shape.Point;
|
||||
import org.apache.lucene.spatial.base.shape.Rectangle;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public class GeoCircleImpl extends CircleImpl {
|
||||
private final double distDEG;// [0 TO 180]
|
||||
private final GeoCircleImpl inverseCircle;//when distance reaches > 1/2 way around the world, cache the inverse.
|
||||
|
|
|
@ -28,9 +28,7 @@ import java.util.Map;
|
|||
|
||||
import static junit.framework.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* @author dsmiley
|
||||
*/
|
||||
|
||||
public class SpatialContextFactoryTest {
|
||||
public static final String PROP = "SpatialContextFactory";
|
||||
|
||||
|
|
|
@ -26,9 +26,7 @@ import org.apache.lucene.util.LuceneTestCase;
|
|||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public class TestDistances extends LuceneTestCase {
|
||||
|
||||
//NOTE! These are sometimes modified by tests.
|
||||
|
|
|
@ -27,9 +27,7 @@ import org.junit.Test;
|
|||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public class SpatialPrefixTreeTest {
|
||||
|
||||
//TODO plug in others and test them
|
||||
|
|
|
@ -26,9 +26,7 @@ import java.util.Random;
|
|||
|
||||
import static org.apache.lucene.spatial.base.shape.SpatialRelation.*;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public abstract class AbstractTestShapes extends LuceneTestCase {
|
||||
|
||||
protected SpatialContext ctx;
|
||||
|
|
|
@ -26,9 +26,7 @@ import static org.apache.lucene.spatial.base.shape.SpatialRelation.*;
|
|||
import static org.junit.Assert.*;
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* @author dsmiley
|
||||
*/
|
||||
|
||||
public class TestShapes2D extends AbstractTestShapes {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -26,9 +26,7 @@ import org.junit.Test;
|
|||
|
||||
import static org.apache.lucene.spatial.base.shape.SpatialRelation.*;
|
||||
|
||||
/**
|
||||
* @author David Smiley - dsmiley@mitre.org
|
||||
*/
|
||||
|
||||
public class TestShapesGeo extends AbstractTestShapes {
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue