Bug in Lucene.Net.Document.Document.cs GetFieldables method
-----------------------------------------------------------

                 Key: LUCENENET-194
                 URL: https://issues.apache.org/jira/browse/LUCENENET-194
             Project: Lucene.Net
          Issue Type: Bug
            Reporter: Iliev Andrei


                public Fieldable[] GetFieldables(System.String name)
                {
                        /*****skip***/
                        return (Fieldable[]) result.ToArray(typeof(Field)); 
                }

 SHOULD BE 
return (Fieldable[]) result.ToArray(typeof(Fieldable)), 

otherwise exception will arise.  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to