[ http://issues.apache.org/jira/browse/LUCENENET-12?page=all ]
George Aroush resolved LUCENENET-12.
------------------------------------
Resolution: Fixed
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