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 dn...@apache.org on 2005/05/11 21:41:08 UTC

svn commit: r169683 - /lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java

Author: dnaber
Date: Wed May 11 12:40:56 2005
New Revision: 169683

URL: http://svn.apache.org/viewcvs?rev=169683&view=rev
Log:
javadoc: fix deprecated links

Modified:
    lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java

Modified: lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java
URL: http://svn.apache.org/viewcvs/lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java?rev=169683&r1=169682&r2=169683&view=diff
==============================================================================
--- lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java (original)
+++ lucene/java/trunk/src/java/org/apache/lucene/analysis/WordlistLoader.java Wed May 11 12:40:56 2005
@@ -66,7 +66,7 @@
    * @param path      Path to the wordlist
    * @param wordfile  Name of the wordlist
    * 
-   * @deprecated Use {@link #getWordSet(File)} getWordSet(File)} instead
+   * @deprecated Use {@link #getWordSet(File)} instead
    */
   public static Hashtable getWordtable(String path, String wordfile) throws IOException {
     return getWordtable(new File(path, wordfile));
@@ -75,7 +75,7 @@
   /**
    * @param wordfile  Complete path to the wordlist
    * 
-   * @deprecated Use {@link #getWordSet(File)} getWordSet(File)} instead
+   * @deprecated Use {@link #getWordSet(File)} instead
    */
   public static Hashtable getWordtable(String wordfile) throws IOException {
     return getWordtable(new File(wordfile));
@@ -84,7 +84,7 @@
   /**
    * @param wordfile  File object that points to the wordlist
    *
-   * @deprecated Use {@link #getWordSet(File)} getWordSet(File)} instead
+   * @deprecated Use {@link #getWordSet(File)} instead
    */
   public static Hashtable getWordtable(File wordfile) throws IOException {
     HashSet wordSet = (HashSet)getWordSet(wordfile);