You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mm...@locus.apache.org on 2000/08/08 00:05:16 UTC

cvs commit: xml-xalan/java/src/org/apache/xpath/patterns StepPattern.java

mmidy       00/08/07 15:05:15

  Modified:    java/src/org/apache/xpath/patterns StepPattern.java
  Log:
  This is as a result of previous fix. They should be checked out together.
  
  Revision  Changes    Path
  1.3       +1 -1      xml-xalan/java/src/org/apache/xpath/patterns/StepPattern.java
  
  Index: StepPattern.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/patterns/StepPattern.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StepPattern.java	2000/08/07 21:26:25	1.2
  +++ StepPattern.java	2000/08/07 22:05:15	1.3
  @@ -194,7 +194,7 @@
       {
         Node parent = xctxt.getDOMHelper().getParentOfNode(xctxt.getCurrentNode());
         xctxt.pushCurrentNode(parent);
  -      score = m_relativePathPattern.execute(xctxt);
  +      score = execute(xctxt);
         if(score != NodeTest.SCORE_NONE)
           score = SCORE_OTHER;
       }