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:
Mark Robert Miller 2010-05-08 16:17:27 +00:00
parent 003cc244f8
commit 06f7a37943
4 changed files with 4 additions and 5 deletions

View File

@ -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

View File

@ -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;

View File

@ -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

View File

@ -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 {