You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by ot...@apache.org on 2002/06/25 18:18:33 UTC

cvs commit: jakarta-lucene/src/java/org/apache/lucene/document Field.java

otis        2002/06/25 09:18:32

  Modified:    src/java/org/apache/lucene/document Field.java
  Log:
  - Made a small method javadoc change.
  
  Revision  Changes    Path
  1.4       +1 -2      jakarta-lucene/src/java/org/apache/lucene/document/Field.java
  
  Index: Field.java
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/document/Field.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Field.java	25 Jun 2002 00:05:31 -0000	1.3
  +++ Field.java	25 Jun 2002 16:18:32 -0000	1.4
  @@ -93,8 +93,7 @@
     }
   
     /** Constructs a Date-valued Field that is tokenized and indexed,
  -    and is stored in the index, for return with hits.  Useful for short text
  -    fields, like "title" or "subject". */
  +      and is stored in the index, for return with hits. */
     public static final Field Keyword(String name, Date value) {
       return new Field(name, DateField.dateToString(value), true, true, true);
     }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>