You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by nk...@apache.org on 2016/04/02 21:07:28 UTC

[3/3] lucene-solr:branch_6x: Fix missing import from refactor. Update change log

Fix missing import from refactor. Update change log


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

Branch: refs/heads/branch_6x
Commit: 4e70702782b863aed9a340d8024ed2a33b03744d
Parents: 951563a
Author: nknize <nk...@apache.org>
Authored: Sat Apr 2 14:06:20 2016 -0500
Committer: nknize <nk...@apache.org>
Committed: Sat Apr 2 14:07:19 2016 -0500

----------------------------------------------------------------------
 lucene/CHANGES.txt                                                | 3 +++
 .../src/test/org/apache/lucene/document/TestLatLonPoint.java      | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4e707027/lucene/CHANGES.txt
----------------------------------------------------------------------
diff --git a/lucene/CHANGES.txt b/lucene/CHANGES.txt
index b6e56d7..edf222a 100644
--- a/lucene/CHANGES.txt
+++ b/lucene/CHANGES.txt
@@ -15,6 +15,9 @@ New Features
 
 API Changes
 
+* LUCENE-7163: refactor GeoRect, Polygon, and GeoUtils tests to geo
+  package in core (Nick Knize)
+
 * LUCENE-7152: Refactor GeoUtils from lucene-spatial package to
   core (Nick Knize)
 

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/4e707027/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java
----------------------------------------------------------------------
diff --git a/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java b/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java
index 73a3683..6d50f06 100644
--- a/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java
+++ b/lucene/sandbox/src/test/org/apache/lucene/document/TestLatLonPoint.java
@@ -16,7 +16,7 @@
  */
 package org.apache.lucene.document;
 
-import org.apache.lucene.spatial.util.GeoTestUtil;
+import org.apache.lucene.geo.GeoTestUtil;
 import org.apache.lucene.util.LuceneTestCase;
 
 /** Simple tests for {@link LatLonPoint} */