You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sa...@apache.org on 2004/12/10 20:10:57 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/runtime Operators.java

santiagopg    2004/12/10 11:10:57

  Modified:    java/src/org/apache/xalan/xsltc/runtime Operators.java
  Log:
  Replaced meaningless numbers by predefined constants in swapArray[] vector.
  
  Revision  Changes    Path
  1.5       +7 -2      xml-xalan/java/src/org/apache/xalan/xsltc/runtime/Operators.java
  
  Index: Operators.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/runtime/Operators.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Operators.java	6 Dec 2004 16:12:50 -0000	1.4
  +++ Operators.java	10 Dec 2004 19:10:57 -0000	1.5
  @@ -37,6 +37,11 @@
       
       // Swap operator array
       public static final int[] swapArray = {
  -        0, 1, 3, 2, 5, 4
  +        EQ,     // EQ
  +        NE,     // NE
  +        LT,     // GT
  +        GT,     // LT 
  +        LE,     // GE 
  +        GE      // LE
       };   
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org