mirror of https://github.com/apache/lucene.git
fix javadoc unknown tag warning.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@552111 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ba90fb06c1
commit
9ff9bf8142
|
@ -29,11 +29,11 @@ import org.apache.lucene.analysis.TokenFilter;
|
|||
/**
|
||||
* Removes elisions from a token stream. For example, "l'avion" (the plane) will be
|
||||
* tokenized as "avion" (plane).
|
||||
* <p>
|
||||
* Note that StandardTokenizer sees " ' " as a space, and cuts it out.
|
||||
*
|
||||
* @author Mathieu Lecarme<mlecarme@openwide.fr>
|
||||
* @see{http://fr.wikipedia.org/wiki/%C3%89lision}
|
||||
*
|
||||
* Note that StandardTokenizer sees "’" as a space, and cuts it out.
|
||||
* @see <a href="http://fr.wikipedia.org/wiki/%C3%89lision">Elision in Wikipedia</a>
|
||||
* @author <a href="mailto:mlecarme@openwide.fr">Mathieu Lecarme</a>
|
||||
*/
|
||||
public class ElisionFilter extends TokenFilter {
|
||||
private Set articles = null;
|
||||
|
|
Loading…
Reference in New Issue