You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucenenet.apache.org by "George Aroush (JIRA)" <ji...@apache.org> on 2006/09/30 05:48:22 UTC

[jira] Closed: (LUCENENET-12) Multisearcher - CreateWieght null exception

     [ http://issues.apache.org/jira/browse/LUCENENET-12?page=all ]

George Aroush closed LUCENENET-12.
----------------------------------


Fixed in Lucene.Net 1.9, 1.9.1 and 2.0

> Multisearcher - CreateWieght null exception
> -------------------------------------------
>
>                 Key: LUCENENET-12
>                 URL: http://issues.apache.org/jira/browse/LUCENENET-12
>             Project: Lucene.Net
>          Issue Type: Bug
>            Reporter: Piotr Dobrowolski
>         Assigned To: George Aroush
>
> There is a bug in CreateWieght method.
> System.Collections.IEnumerator e = terms.GetEnumerator();
> while (e.MoveNext())
>       allTermsArray[index++] = e.Current as Term;
> Enumerator returns KeyValuePairs, not terms so all elements of resulting array are null. This code should probably look like this:
> System.Collections.IEnumerator e = terms.Keys.GetEnumerator();
>             while (e.MoveNext())
>                 allTermsArray[index++] = e.Current as Term;

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira