Re: [Lucene.Net] [jira] [Commented] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-05-20 Thread Andy Pook
It'd be useful if There was a StopAnalyzer ctor overload that took an IEnumerablestring and maybe the current one that takes Liststring should be ICollectionstring (same as internal stopWords member). Just gives a little flexibility on the types that can be used. Also there is a little confusion

Re: [Lucene.Net] [jira] [Commented] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-05-20 Thread digy digy
On Fri, May 20, 2011 at 12:34 PM, Andy Pook andy.p...@gmail.com wrote: It'd be useful if There was a StopAnalyzer ctor overload that took an IEnumerablestring and maybe the current one that takes Liststring should be ICollectionstring (same as internal stopWords member). Just gives a little

Re: [Lucene.Net] [jira] [Commented] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-05-18 Thread Alexander Bauer
Can i use this version with an existing index based on lucene.Java 3.0.3 ? Alex Am 19.05.2011 00:20, schrieb Digy (JIRA): [

[Lucene.Net] [jira] [Commented] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-05-17 Thread Digy (JIRA)
[ https://issues.apache.org/jira/browse/LUCENENET-412?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13035092#comment-13035092 ] Digy commented on LUCENENET-412: One more sample {code} From: class

Re: [Lucene.Net] [jira] [Commented] (LUCENENET-412) Replacing ArrayLists, Hashtables etc. with appropriate Generics.

2011-05-17 Thread Rory Plaire
This is a great improvement, but why not also remove the braces and returns? var cache = new FilterCacheDocIdSet(deletesMode, (reader, docIdSet) = new FilteredDocIdSet( (DocIdSet)docIdSet, docid = !reader.IsDeleted(docid))); On Tue, May 17, 2011 at 3:01 PM, Digy (JIRA) j...@apache.org