neilg       2003/11/18 07:56:54

  Modified:    java/src/org/apache/xerces/impl/xs/identity
                        XPathMatcher.java
  Log:
  fix for typo in toString method; thanks to Jon Schewe for pointing this out
  
  Revision  Changes    Path
  1.21      +2 -2      
xml-xerces/java/src/org/apache/xerces/impl/xs/identity/XPathMatcher.java
  
  Index: XPathMatcher.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/identity/XPathMatcher.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- XPathMatcher.java 15 Nov 2003 22:03:22 -0000      1.20
  +++ XPathMatcher.java 18 Nov 2003 15:56:54 -0000      1.21
  @@ -463,7 +463,7 @@
                   if (j == fCurrentStep[i]) {
                       str.append('^');
                   }
  -                str.append(steps[i].toString());
  +                str.append(steps[j].toString());
                   if (j < steps.length - 1) {
                       str.append('/');
                   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to