You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@lucene.apache.org by ma...@apache.org on 2009/08/27 01:05:29 UTC

svn commit: r808217 - /lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java

Author: markrmiller
Date: Wed Aug 26 23:05:28 2009
New Revision: 808217

URL: http://svn.apache.org/viewvc?rev=808217&view=rev
Log:
whoops - this one actually need the DocData param, but not the @link - you can't @link in @see

Modified:
    lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java

Modified: lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java
URL: http://svn.apache.org/viewvc/lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java?rev=808217&r1=808216&r2=808217&view=diff
==============================================================================
--- lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java (original)
+++ lucene/java/trunk/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/HTMLParser.java Wed Aug 26 23:05:28 2009
@@ -44,7 +44,7 @@
   /**
    * Parse the inputText and return DocData. 
    * @param inputText the html text to parse.
-   * @see {@link #parse(String, Date, Reader, DateFormat)}
+   * @see #parse(DocData, String, Date, Reader, DateFormat)
    */
   public DocData parse(DocData docData, String name, Date date, StringBuffer inputText, DateFormat dateFormat) throws IOException, InterruptedException;