Return-Path: Delivered-To: apmail-jakarta-lucene-dev-archive@www.apache.org Received: (qmail 54390 invoked from network); 9 Oct 2003 00:09:31 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 9 Oct 2003 00:09:31 -0000 Received: (qmail 91293 invoked by uid 500); 9 Oct 2003 00:09:13 -0000 Delivered-To: apmail-jakarta-lucene-dev-archive@jakarta.apache.org Received: (qmail 91129 invoked by uid 500); 9 Oct 2003 00:09:12 -0000 Mailing-List: contact lucene-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Lucene Developers List" Reply-To: "Lucene Developers List" Delivered-To: mailing list lucene-dev@jakarta.apache.org Received: (qmail 91114 invoked by uid 500); 9 Oct 2003 00:09:12 -0000 Received: (qmail 91111 invoked from network); 9 Oct 2003 00:09:12 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 9 Oct 2003 00:09:12 -0000 Received: (qmail 54376 invoked by uid 1419); 9 Oct 2003 00:09:27 -0000 Date: 9 Oct 2003 00:09:27 -0000 Message-ID: <20031009000927.54375.qmail@minotaur.apache.org> From: ehatcher@apache.org To: jakarta-lucene-cvs@apache.org Subject: cvs commit: jakarta-lucene/src/java/org/apache/lucene/analysis/ru RussianStemmer.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N ehatcher 2003/10/08 17:09:27 Modified: src/java/org/apache/lucene/analysis/ru RussianStemmer.java Log: minor javadoc fixup Revision Changes Path 1.4 +1 -12 jakarta-lucene/src/java/org/apache/lucene/analysis/ru/RussianStemmer.java Index: RussianStemmer.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/analysis/ru/RussianStemmer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- RussianStemmer.java 12 Dec 2002 05:10:11 -0000 1.3 +++ RussianStemmer.java 9 Oct 2003 00:09:27 -0000 1.4 @@ -347,9 +347,6 @@ /** * Finds ending among given ending class and returns the length of ending found(0, if not found). * Creation date: (17/03/2002 8:18:34 PM) - * @return int - * @param word java.lang.StringBuffer - * @param theEnding char[] */ private int findEnding(StringBuffer stemmingZone, int startIndex, char[][] theEndingClass) { @@ -390,9 +387,6 @@ /** * Finds the ending among the given class of endings and removes it from stemming zone. * Creation date: (17/03/2002 8:18:34 PM) - * @return boolean - * @param word java.lang.StringBuffer - * @param theEnding char[] */ private boolean findAndRemoveEnding(StringBuffer stemmingZone, char[][] theEndingClass) { @@ -411,9 +405,6 @@ * Finds the ending among the given class of endings, then checks if this ending was * preceded by any of given predessors, and if so, removes it from stemming zone. * Creation date: (17/03/2002 8:18:34 PM) - * @return boolean - * @param word java.lang.StringBuffer - * @param theEnding char[] */ private boolean findAndRemoveEnding(StringBuffer stemmingZone, char[][] theEndingClass, char[][] thePredessors) @@ -442,8 +433,6 @@ /** * Marks positions of RV, R1 and R2 in a given word. * Creation date: (16/03/2002 3:40:11 PM) - * @return int - * @param word java.lang.String */ private void markPositions(String word) { --------------------------------------------------------------------- To unsubscribe, e-mail: lucene-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: lucene-dev-help@jakarta.apache.org