You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by dn...@apache.org on 2004/09/17 21:09:27 UTC

cvs commit: jakarta-lucene-sandbox/contributions/analyzers/src/java/org/apache/lucene/analysis/br BrazilianStemmer.java

dnaber      2004/09/17 12:09:27

  Modified:    contributions/analyzers/src/java/org/apache/lucene/analysis/br
                        BrazilianStemmer.java
  Log:
  remove unused variables
  
  Revision  Changes    Path
  1.5       +0 -12     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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- BrazilianStemmer.java	18 Aug 2004 14:30:48 -0000	1.4
  +++ BrazilianStemmer.java	17 Sep 2004 19:09:27 -0000	1.5
  @@ -74,15 +74,6 @@
   	private   String RV ;
   
   
  -	/**
  -	 * Buffer for the terms while stemming them.
  -	 */
  -	private StringBuffer sb = new StringBuffer();
  -	/**
  -	 * Amount of characters that are removed with <tt>substitute()</tt> while stemming.
  -	 */
  -	private int substCount = 0;
  -
   	public BrazilianStemmer() {
   	}
   
  @@ -175,7 +166,6 @@
   	private String getR1( String value ) {
       int     i;
       int     j;
  -    String  r1 = null ;
   
       // be-safe !!!
       if (value == null) {
  @@ -228,7 +218,6 @@
   	private String getRV( String value ) {
       int     i;
       int     j;
  -    String  r1 = null ;
   
       // be-safe !!!
       if (value == null) {
  @@ -288,7 +277,6 @@
      * @return null or a string transformed
   	 */
   	private String changeTerm( String value ) {
  -    int     i;
       int     j;
       String  r = "" ;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: lucene-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: lucene-dev-help@jakarta.apache.org