RE: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-15 Thread Nick Burch
On Mon, 14 Dec 2009, Uwe Schindler wrote: Can you open an issue? This is a problem in SnowballAnalyzer missing to add the set ctor. Sure, I have done - http://issues.apache.org/jira/browse/LUCENE-2165 Nick - To unsubscribe,

RE: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-15 Thread Uwe Schindler
@lucene.apache.org Subject: RE: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ? On Mon, 14 Dec 2009, Uwe Schindler wrote: Can you open an issue? This is a problem in SnowballAnalyzer missing to add the set ctor. Sure, I have done - http://issues.apache.org/jira/browse/LUCENE-2165 Nick

SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-14 Thread Nick Burch
Hi All I'm upgrading my code from 2.4 to 2.9, and I've hit an issue with deprecations. My old code was: new SnowballAnalyzer(English, StopAnalyzer.ENGLISH_STOP_WORDS); Looking at the JavaDocs, I'd expected that the new format would be: new SnowballAnalyzer

Re: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-14 Thread Weiwei Wang
...@torchbox.com wrote: Hi All I'm upgrading my code from 2.4 to 2.9, and I've hit an issue with deprecations. My old code was: new SnowballAnalyzer(English, StopAnalyzer.ENGLISH_STOP_WORDS); Looking at the JavaDocs, I'd expected that the new format would be: new SnowballAnalyzer

Re: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-14 Thread Erick Erickson
to 2.9, and I've hit an issue with deprecations. My old code was: new SnowballAnalyzer(English, StopAnalyzer.ENGLISH_STOP_WORDS); Looking at the JavaDocs, I'd expected that the new format would be: new SnowballAnalyzer(Version.LUCENE_CURRENT, English

RE: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ?

2009-12-14 Thread Uwe Schindler
-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de -Original Message- From: Erick Erickson [mailto:erickerick...@gmail.com] Sent: Monday, December 14, 2009 6:35 PM To: java-user@lucene.apache.org Subject: Re: SnowballAnalyzer and StopAnalyzer.ENGLISH_STOP_WORDS_SET ? Hmmm