[
https://issues.apache.org/jira/browse/LUCENENET-121?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12613961#action_12613961
]
Digy commented on LUCENENET-121:
--------------------------------
Bug still exists in Lucene.Net 2.3.1 build 001 "beta" .
I will send another patch.
DIGY
> StopFilter tries to access the i'th item of a hashtable as item[i] where i
> is not a key.
> -----------------------------------------------------------------------------------------
>
> Key: LUCENENET-121
> URL: https://issues.apache.org/jira/browse/LUCENENET-121
> Project: Lucene.Net
> Issue Type: Bug
> Environment: Lucene.Net 2.3.1
> Reporter: Digy
> Attachments: Another patch.rar, StopFilter v1.patch, StopFilter
> v1.patch
>
>
> Constructor of StopFilter tries to access the i'th item of a hashtable as
> item[i] where i is not a key.
> {code}
> public StopFilter(TokenStream input,
> System.Collections.Hashtable stopWords, bool ignoreCase) : base(input)
> {
> if (stopWords is CharArraySet)
> {
> this.stopWords = (CharArraySet) stopWords;
> }
> else
> {
> this.stopWords = new
> CharArraySet(stopWords.Count, ignoreCase);
> for (int i = 0; i < stopWords.Count; i++)
> {
> this.stopWords.Add(stopWords[i]); //
> <----- i is not a "key" it is index.
> }
> }
> }
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.