Hi,

you have still the wrong mail address for the GIT commit itsself:
> Author: Michael McCandless <[email protected]>
> Authored: Sun Jan 24 16:48:51 2016 -0500

The person who pushed is different:
> Committer: Mike McCandless <[email protected]>
> Committed: Sun Jan 24 16:48:51 2016 -0500

Uwe

-----
Uwe Schindler
H.-H.-Meier-Allee 63, D-28213 Bremen
http://www.thetaphi.de
eMail: [email protected]


> -----Original Message-----
> From: [email protected] [mailto:[email protected]]
> Sent: Sunday, January 24, 2016 10:49 PM
> To: [email protected]
> Subject: lucene-solr git commit: revert this est change until we can fix geo
> API border cases (LUCENE-6956)
> 
> Repository: lucene-solr
> Updated Branches:
>   refs/heads/master 9d35aafc5 -> b62c6715d
> 
> 
> revert this est change until we can fix geo API border cases (LUCENE-6956)
> 
> 
> Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
> Commit: http://git-wip-us.apache.org/repos/asf/lucene-
> solr/commit/b62c6715
> Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/b62c6715
> Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/b62c6715
> 
> Branch: refs/heads/master
> Commit: b62c6715df12616785732cc1011e11fe4faa16ca
> Parents: 9d35aaf
> Author: Michael McCandless <[email protected]>
> Authored: Sun Jan 24 16:48:51 2016 -0500
> Committer: Mike McCandless <[email protected]>
> Committed: Sun Jan 24 16:48:51 2016 -0500
> 
> ----------------------------------------------------------------------
>  .../src/test/org/apache/lucene/util/BaseGeoPointTestCase.java  | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> ----------------------------------------------------------------------
> 
> 
> http://git-wip-us.apache.org/repos/asf/lucene-
> solr/blob/b62c6715/lucene/sandbox/src/test/org/apache/lucene/util/BaseG
> eoPointTestCase.java
> ----------------------------------------------------------------------
> diff --git
> a/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
> ava
> b/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
> ava
> index f84d696..4236e88 100644
> ---
> a/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
> ava
> +++
> b/lucene/sandbox/src/test/org/apache/lucene/util/BaseGeoPointTestCase.j
> ava
> @@ -434,7 +434,8 @@ public abstract class BaseGeoPointTestCase extends
> LuceneTestCase {
>      } else {
>        result = -90 + 180.0 * random().nextDouble();
>      }
> -    return result;
> +    // TODO: we should not do this here!  it weakens the test, and users 
> don't
> pre-quantize the lat/lons they send us:
> +    return unscaleLat(scaleLat(result));
>    }
> 
>    public double randomLon(boolean small) {
> @@ -444,7 +445,8 @@ public abstract class BaseGeoPointTestCase extends
> LuceneTestCase {
>      } else {
>        result = -180 + 360.0 * random().nextDouble();
>      }
> -    return result;
> +    // TODO: we should not do this here!  it weakens the test, and users 
> don't
> pre-quantize the lat/lons they send us:
> +    return unscaleLon(scaleLon(result));
>    }
> 
>    protected GeoRect randomRect(boolean small, boolean canCrossDateLine)
> {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to