Hello,

we were having problems with the highlighter in combination with the French
analyzer. The highlighter returned garbage when we used it after a pass through
the French analyzer. I found out that it's due do a problem in the token
creation within the FrenchStemFilter next() method. I don't have an account
to register bugs so I'm posting it here:

  public final Token next()
...
      if ( !s.equals( token.termText() ) ) {
        return new Token( s,0, s.lenght(), token.type() );
      }
....
  }

This should be:
  public final Token next()
...
      if ( !s.equals( token.termText() ) ) {
        return new Token( s, token.startOffset(), token.endOffset(), 
token.type());
      }
....
  }

cheers

Bob






---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to