ehatcher 2004/01/19 13:22:36 Modified: contributions/analyzers/src/java/org/apache/lucene/analysis/br BrazilianStemmer.java Log: javadoc fixup Revision Changes Path 1.2 +5 -5 jakarta-lucene-sandbox/contributions/analyzers/src/java/org/apache/lucene/analysis/br/BrazilianStemmer.java Index: BrazilianStemmer.java =================================================================== RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/analyzers/src/java/org/apache/lucene/analysis/br/BrazilianStemmer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- BrazilianStemmer.java 23 Dec 2003 18:46:35 -0000 1.1 +++ BrazilianStemmer.java 19 Jan 2004 21:22:36 -0000 1.2 @@ -36,7 +36,7 @@ /** * Stemms the given term to an unique <tt>discriminator</tt>. * - * @param word The term that should be stemmed. + * @param term The term that should be stemmed. * @return Discriminator for <tt>term</tt> */ protected String stem( String term ) { @@ -44,7 +44,7 @@ // creates CT createCT(term) ; - + if ( !isIndexable( CT ) ) { return null; } @@ -363,7 +363,7 @@ CT = changeTerm(term) ; if (CT.length() < 2) return ; - + // if the first character is ... , remove it if ((CT.charAt(0) == '"') || (CT.charAt(0) == '\'') || @@ -378,7 +378,7 @@ } if (CT.length() < 2) return ; - + // if the last character is ... , remove it if ((CT.charAt(CT.length()-1) == '-') || (CT.charAt(CT.length()-1) == ',') ||
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]