You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucenenet.apache.org by "Digy (JIRA)" <ji...@apache.org> on 2010/03/17 21:47:27 UTC

[jira] Updated: (LUCENENET-351) spellcheck can fail

     [ https://issues.apache.org/jira/browse/LUCENENET-351?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Digy updated LUCENENET-351:
---------------------------

    Attachment: LuceneDictionary.patch

If no one objects, I will commit.
DIGY

> spellcheck can fail
> -------------------
>
>                 Key: LUCENENET-351
>                 URL: https://issues.apache.org/jira/browse/LUCENENET-351
>             Project: Lucene.Net
>          Issue Type: Bug
>         Environment: All
>            Reporter: B 
>         Attachments: LuceneDictionary.patch
>
>
> In LuceneDictionary.cs line 107 there is the following:
> if ((System.Object) fieldt != (System.Object) Enclosing_Instance.field)
> This was causing my spellchecking to fail, as the references aren't the same, but the values are. If I change it to be:
> if (fieldt != Enclosing_Instance.field)
> then it works fine. 

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