[ https://issues.apache.org/jira/browse/LUCENENET-194?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12756153#action_12756153 ]
Digy commented on LUCENENET-194: -------------------------------- Thanks Iliev. I committed the patch for 2.3.1, 2.3.2 and 2.4.0 DIGY > 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 > Original Estimate: 0h > Remaining Estimate: 0h > > 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.