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 


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.

Reply via email to