[ http://issues.apache.org/jira/browse/LUCENENET-12?page=comments#action_12428364 ] Ivan Gu?vinec commented on LUCENENET-12: ----------------------------------------
A patch attached to LUCENENET-13 also includes changes to MultiSearcher.CreateWeight() > 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 > > 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
