mirror of https://github.com/apache/lucene.git
move imports down
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1378207 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6722080cfc
commit
6382ff2607
|
@ -1,9 +1,5 @@
|
||||||
package org.apache.lucene.search.similarities;
|
package org.apache.lucene.search.similarities;
|
||||||
|
|
||||||
import org.apache.lucene.index.FieldInvertState;
|
|
||||||
import org.apache.lucene.index.Norm;
|
|
||||||
import org.apache.lucene.util.BytesRef;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
* contributor license agreements. See the NOTICE file distributed with
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
@ -21,6 +17,10 @@ import org.apache.lucene.util.BytesRef;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import org.apache.lucene.index.FieldInvertState;
|
||||||
|
import org.apache.lucene.index.Norm;
|
||||||
|
import org.apache.lucene.util.BytesRef;
|
||||||
|
|
||||||
/** Expert: Default scoring implementation. */
|
/** Expert: Default scoring implementation. */
|
||||||
public class DefaultSimilarity extends TFIDFSimilarity {
|
public class DefaultSimilarity extends TFIDFSimilarity {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue