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 2011/01/15 22:54:45 UTC

[jira] Resolved: (LUCENENET-376) Ver.2.9.2 SpanOrQuery.ToString() bug

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

Digy resolved LUCENENET-376.
----------------------------

    Resolution: Fixed
      Assignee: Digy

Patch applied to 2.9.2 and trunk

DIGY

> Ver.2.9.2 SpanOrQuery.ToString() bug
> ------------------------------------
>
>                 Key: LUCENENET-376
>                 URL: https://issues.apache.org/jira/browse/LUCENENET-376
>             Project: Lucene.Net
>          Issue Type: Bug
>            Reporter: Andrei Iliev
>            Assignee: Digy
>         Attachments: SpanOrQuery.patch
>
>
> Bad conversion from java code.
> ====================
> 			System.Collections.IEnumerator i = clauses.GetEnumerator();
> 			while (i.MoveNext())
> 			{
> 				SpanQuery clause = (SpanQuery) i.Current;
> 				buffer.Append(clause.ToString(field));
> 				if (i.MoveNext())
> 				{
> 					buffer.Append(", ");
> 				}
> 			}
> ====================
> Shoud be changed to something like:
> ====================
>                         int j = 0;
> 			while (i.MoveNext())
> 			{
>                                  j++;
> 				SpanQuery clause = (SpanQuery) i.Current;
> 				buffer.Append(clause.ToString(field));
> 				if (j<clauses.Count)
> 				{
> 					buffer.Append(", ");
> 				}
> 			}
> ====================

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