You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2014/07/09 16:46:13 UTC

svn commit: r1609189 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/spatial/ lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java

Author: dsmiley
Date: Wed Jul  9 14:46:13 2014
New Revision: 1609189

URL: http://svn.apache.org/r1609189
Log:
LUCENE-5692: remove need for uninversion for RandomSpatialOpFuzzyPrefixTreeTest

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/spatial/   (props changed)
    lucene/dev/branches/branch_4x/lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java

Modified: lucene/dev/branches/branch_4x/lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java?rev=1609189&r1=1609188&r2=1609189&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java (original)
+++ lucene/dev/branches/branch_4x/lucene/spatial/src/test/org/apache/lucene/spatial/prefix/RandomSpatialOpFuzzyPrefixTreeTest.java Wed Jul  9 14:46:13 2014
@@ -38,7 +38,6 @@ import org.apache.lucene.spatial.prefix.
 import org.apache.lucene.spatial.prefix.tree.SpatialPrefixTree;
 import org.apache.lucene.spatial.query.SpatialArgs;
 import org.apache.lucene.spatial.query.SpatialOperation;
-import org.junit.Before;
 import org.junit.Test;
 
 import java.io.IOException;
@@ -70,14 +69,6 @@ public class RandomSpatialOpFuzzyPrefixT
   private SpatialPrefixTree grid;
   private SpatialContext ctx2D;
 
-  @Before
-  @Override
-  public void setUp() throws Exception {
-    super.setUp();
-    //Only for Disjoint.  Ugh; need to find a better way.  LUCENE-5692
-    //uninvertMap.put(getClass().getSimpleName(), UninvertingReader.Type.SORTED);
-  }
-
   public void setupGrid(int maxLevels) throws IOException {
     if (randomBoolean())
       setupQuadGrid(maxLevels);