santiagopg    2002/06/12 13:09:26

  Modified:    java/src/org/apache/xalan/xsltc/dom BitArray.java
  Log:
  Added default constructor.
  
  Revision  Changes    Path
  1.4       +5 -1      
xml-xalan/java/src/org/apache/xalan/xsltc/dom/BitArray.java
  
  Index: BitArray.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/dom/BitArray.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BitArray.java     5 Oct 2001 06:26:50 -0000       1.3
  +++ BitArray.java     12 Jun 2002 20:09:26 -0000      1.4
  @@ -93,6 +93,10 @@
       /**
        * Constructor. Defines the initial size of the bit array (in bits).
        */
  +    public BitArray() {
  +     this(32);
  +    }
  +
       public BitArray(int size) {
        if (size < 32) size = 32;
        _bitSize = size;
  
  
  

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

Reply via email to