You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by tm...@apache.org on 2001/11/09 16:15:45 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util Type.java

tmiller     01/11/09 07:15:45

  Modified:    java/src/org/apache/xalan/xsltc/compiler/util Type.java
  Log:
  bug fix 3592, handles Long types
  
  Revision  Changes    Path
  1.8       +2 -1      xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util/Type.java
  
  Index: Type.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/util/Type.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Type.java	2001/10/30 15:35:30	1.7
  +++ Type.java	2001/11/09 15:15:45	1.8
  @@ -1,5 +1,5 @@
   /*
  - * @(#)$Id: Type.java,v 1.7 2001/10/30 15:35:30 morten Exp $
  + * @(#)$Id: Type.java,v 1.8 2001/11/09 15:15:45 tmiller Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -72,6 +72,7 @@
   
   public abstract class Type implements Constants {
       public static final Type Int        = new IntType();
  +    public static final Type Lng        = new LongType(); //GTM,bug 3592
       public static final Type Real       = new RealType();
       public static final Type Boolean    = new BooleanType();
       public static final Type NodeSet    = new NodeSetType();
  
  
  

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