You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by "Michael Glavassevich (JIRA)" <xe...@xml.apache.org> on 2007/08/25 18:11:31 UTC

[jira] Updated: (XERCESJ-1224) Typo in RangeToken.intersectRanges()

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

Michael Glavassevich updated XERCESJ-1224:
------------------------------------------

    Fix Version/s: 2.9.1

> Typo in RangeToken.intersectRanges()
> ------------------------------------
>
>                 Key: XERCESJ-1224
>                 URL: https://issues.apache.org/jira/browse/XERCESJ-1224
>             Project: Xerces2-J
>          Issue Type: Bug
>          Components: Other
>    Affects Versions: 2.9.0
>            Reporter: Michael Glavassevich
>            Assignee: Michael Glavassevich
>            Priority: Minor
>             Fix For: 2.9.1
>
>
> Reported by Dave Brosius to j-dev@xerces.apache.org:
> > In org.apache.xerces.impl.xpath.regex.RangeToken.java
> > 
> > in method protected void intersectRanges(Token token)
> > 
> > 
> > around line 352
> > 
> > if (src2begin <= src2begin && src1end <= src2end) {
> >                                                 // src1:    o--------o
> >                                                 // src2:  o------------o
> >                                                 // res:     o--------o
> >                                                 // Reuse src2
> > 
> > 
> > from the pretty picture, i'd say it should be 
> > 
> > if (src2begin <= src1begin && src1end <= src2end) {

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


---------------------------------------------------------------------
To unsubscribe, e-mail: j-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: j-dev-help@xerces.apache.org