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:
Erik Hatcher 2003-10-09 00:08:52 +00:00
parent fcf192b882
commit 2216c0dee3
2 changed files with 2 additions and 3 deletions

View File

@ -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;
} }

View File

@ -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 )
{ {