mirror of https://github.com/apache/lucene.git
fix package oddities
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@942410 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
003cc244f8
commit
06f7a37943
|
@ -25,7 +25,7 @@ import org.apache.lucene.index.Term;
|
|||
import org.apache.lucene.index.IndexFileNames;
|
||||
import org.apache.lucene.store.Directory;
|
||||
import org.apache.lucene.util.CloseableThreadLocal;
|
||||
import org.apache.lucene.util.cache.DoubleBarrelLRUCache;
|
||||
import org.apache.lucene.util.DoubleBarrelLRUCache;
|
||||
|
||||
/** This stores a monotonically increasing set of <Term, TermInfo> pairs in a
|
||||
* Directory. Pairs are accessed either by Term or by ordinal position the
|
||||
|
|
|
@ -37,7 +37,7 @@ import org.apache.lucene.index.codecs.FieldsProducer;
|
|||
import org.apache.lucene.store.Directory;
|
||||
import org.apache.lucene.store.IndexInput;
|
||||
import org.apache.lucene.util.Bits;
|
||||
import org.apache.lucene.util.cache.DoubleBarrelLRUCache;
|
||||
import org.apache.lucene.util.DoubleBarrelLRUCache;
|
||||
import org.apache.lucene.util.BytesRef;
|
||||
import org.apache.lucene.util.CodecUtil;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.util.cache;
|
||||
package org.apache.lucene.util;
|
||||
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package org.apache.lucene.util.cache;
|
||||
package org.apache.lucene.util;
|
||||
|
||||
/**
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
|
@ -17,7 +17,6 @@ package org.apache.lucene.util.cache;
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
|
||||
public class TestDoubleBarrelLRUCache extends LuceneTestCase {
|
||||
|
Loading…
Reference in New Issue