mirror of https://github.com/apache/lucene.git
minor javadoc fixup and add question comment
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150084 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fcf192b882
commit
2216c0dee3
|
@ -169,7 +169,8 @@ public class GermanAnalyzer extends Analyzer
|
||||||
{
|
{
|
||||||
TokenStream result = new StandardTokenizer( reader );
|
TokenStream result = new StandardTokenizer( reader );
|
||||||
result = new StandardFilter( result );
|
result = new StandardFilter( result );
|
||||||
result = new StopFilter( result, stoptable );
|
// shouldn't there be a lowercaser before stop word filtering?
|
||||||
|
result = new StopFilter( result, stoptable );
|
||||||
result = new GermanStemFilter( result, excltable );
|
result = new GermanStemFilter( result, excltable );
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -165,8 +165,6 @@ public class GermanStemmer
|
||||||
/**
|
/**
|
||||||
* Does some optimizations on the term. This optimisations are
|
* Does some optimizations on the term. This optimisations are
|
||||||
* contextual.
|
* contextual.
|
||||||
*
|
|
||||||
* @return The term with the optimizations applied.
|
|
||||||
*/
|
*/
|
||||||
private void optimize( StringBuffer buffer )
|
private void optimize( StringBuffer buffer )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue