You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/07/13 17:27:34 UTC

lucene-solr:branch_6x: LUCENE-7013: move license header before package declaration

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6x 629346feb -> c2866c770


LUCENE-7013: move license header before package declaration


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/c2866c77
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/c2866c77
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/c2866c77

Branch: refs/heads/branch_6x
Commit: c2866c7702af3a3f9bbe7487a52def177894f46c
Parents: 629346f
Author: Steve Rowe <sa...@apache.org>
Authored: Wed Jul 13 13:27:26 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Wed Jul 13 13:27:26 2016 -0400

----------------------------------------------------------------------
 .../core/src/java/org/apache/lucene/geo/GeoUtils.java   | 12 ++++++------
 .../spatial/geopoint/search/GeoPointMultiTermQuery.java |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c2866c77/lucene/core/src/java/org/apache/lucene/geo/GeoUtils.java
----------------------------------------------------------------------
diff --git a/lucene/core/src/java/org/apache/lucene/geo/GeoUtils.java b/lucene/core/src/java/org/apache/lucene/geo/GeoUtils.java
index dbdadfd..2f3e9d3 100644
--- a/lucene/core/src/java/org/apache/lucene/geo/GeoUtils.java
+++ b/lucene/core/src/java/org/apache/lucene/geo/GeoUtils.java
@@ -1,9 +1,3 @@
-package org.apache.lucene.geo;
-
-import static org.apache.lucene.util.SloppyMath.TO_RADIANS;
-import static org.apache.lucene.util.SloppyMath.cos;
-import static org.apache.lucene.util.SloppyMath.haversinMeters;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -21,6 +15,12 @@ import static org.apache.lucene.util.SloppyMath.haversinMeters;
  * limitations under the License.
  */
 
+package org.apache.lucene.geo;
+
+import static org.apache.lucene.util.SloppyMath.TO_RADIANS;
+import static org.apache.lucene.util.SloppyMath.cos;
+import static org.apache.lucene.util.SloppyMath.haversinMeters;
+
 /**
  * Basic reusable geo-spatial utility methods
  *

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c2866c77/lucene/spatial/src/java/org/apache/lucene/spatial/geopoint/search/GeoPointMultiTermQuery.java
----------------------------------------------------------------------
diff --git a/lucene/spatial/src/java/org/apache/lucene/spatial/geopoint/search/GeoPointMultiTermQuery.java b/lucene/spatial/src/java/org/apache/lucene/spatial/geopoint/search/GeoPointMultiTermQuery.java
index 0d4a274..14027c1 100644
--- a/lucene/spatial/src/java/org/apache/lucene/spatial/geopoint/search/GeoPointMultiTermQuery.java
+++ b/lucene/spatial/src/java/org/apache/lucene/spatial/geopoint/search/GeoPointMultiTermQuery.java
@@ -1,5 +1,3 @@
-package org.apache.lucene.spatial.geopoint.search;
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -17,6 +15,8 @@ package org.apache.lucene.spatial.geopoint.search;
  * limitations under the License.
  */
 
+package org.apache.lucene.spatial.geopoint.search;
+
 import java.io.IOException;
 
 import org.apache.lucene.index.IndexReader;