From f504aba39ba38c6353b24dc894433f469857c992 Mon Sep 17 00:00:00 2001 From: Erik Hatcher Date: Tue, 16 Sep 2003 21:00:26 +0000 Subject: [PATCH] oops... IDEA lied to me - adding back import git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150038 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/document/Document.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/lucene/document/Document.java b/src/java/org/apache/lucene/document/Document.java index ba4b8331946..795426199ca 100644 --- a/src/java/org/apache/lucene/document/Document.java +++ b/src/java/org/apache/lucene/document/Document.java @@ -58,6 +58,7 @@ import java.util.Enumeration; import java.util.List; import java.util.ArrayList; import org.apache.lucene.index.IndexReader; // for javadoc +import org.apache.lucene.search.Hits; // for javadoc /** Documents are the unit of indexing and search. * @@ -93,9 +94,9 @@ public final class Document implements java.io.Serializable { *

The default value is 1.0. * *

Note: This value is not stored directly with the document in the index. - * Documents returned from {@link IndexReader#document(int)} and {@link - * Hits#doc(int)} may thus not have the same value present as when this - * document was indexed. + * Documents returned from {@link IndexReader#document(int)} and + * {@link Hits#doc(int)} may thus not have the same value present as when + * this document was indexed. * * @see #setBoost(float) */