http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/impl/xpath/regex/RangeToken.java?view=log
Include Revisions:
965250 (only included changes in file RangeToken.java), 928735, 827769, 504431
Fixed bugs:
XERCESJ-1224 Minor Typo in RangeToken.intersectRanges()
Also fix bug where regular expression intersection returns incorrect value when first range ends later than second range. Example below.
new RegularExpression("(?[b-d]&[a-r])"); -> returns [b-d] (Correct)
new RegularExpression("(?[a-r]&[b-d])"); -> returns [b-de-r] (Incorrect)
Exclude Revisions:
329261
Reason to exclude:
Exclude revision 329261, we don't want to change serialVersionUID that had been set since JDK6.
Revisions already in JAXP sources:
Verified that revisions prior to and including 320567 are in JAXP sources already
Bug fixes already in JAXP sources:
XERCESJ-1054 Major Parsing XML sometimes goes wrong
XERCESJ-1076 Major thread safety issue with schema validation