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:
Michael McCandless 2012-08-28 16:24:31 +00:00
parent 6722080cfc
commit 6382ff2607
1 changed files with 4 additions and 4 deletions
lucene/core/src/java/org/apache/lucene/search/similarities

View File

@ -1,9 +1,5 @@
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
* contributor license agreements. See the NOTICE file distributed with
@ -21,6 +17,10 @@ import org.apache.lucene.util.BytesRef;
* 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. */
public class DefaultSimilarity extends TFIDFSimilarity {