You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by dn...@apache.org on 2004/08/06 22:09:19 UTC

cvs commit: jakarta-lucene/src/java/org/apache/lucene/search Searchable.java

dnaber      2004/08/06 13:09:19

  Modified:    src/java/org/apache/lucene/search Searchable.java
  Log:
  No dot at the end of the @see tag. javadoc doesn't seem to care, but Eclipse prints a warning.
  
  Revision  Changes    Path
  1.12      +3 -3      jakarta-lucene/src/java/org/apache/lucene/search/Searchable.java
  
  Index: Searchable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/search/Searchable.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Searchable.java	29 Mar 2004 22:48:03 -0000	1.11
  +++ Searchable.java	6 Aug 2004 20:09:19 -0000	1.12
  @@ -53,13 +53,13 @@
   
     /** Expert: Returns the number of documents containing <code>term</code>.
      * Called by search code to compute term weights.
  -   * @see IndexReader#docFreq(Term).
  +   * @see IndexReader#docFreq(Term)
      */
     int docFreq(Term term) throws IOException;
   
     /** Expert: Returns one greater than the largest possible document number.
      * Called by search code to compute term weights.
  -   * @see IndexReader#maxDoc().
  +   * @see IndexReader#maxDoc()
      */
     int maxDoc() throws IOException;
   
  @@ -75,7 +75,7 @@
   
     /** Expert: Returns the stored fields of document <code>i</code>.
      * Called by {@link HitCollector} implementations.
  -   * @see IndexReader#document(int).
  +   * @see IndexReader#document(int)
      */
     Document doc(int i) throws IOException;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lucene-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: lucene-dev-help@jakarta.apache.org