acoliver    02/03/23 09:06:16

  Modified:    src/scratchpad/src/org/apache/poi/generator RecordUtil.java
  Log:
  unfixed problem...have new solution
  
  Revision  Changes    Path
  1.6       +1 -1      
jakarta-poi/src/scratchpad/src/org/apache/poi/generator/RecordUtil.java
  
  Index: RecordUtil.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/generator/RecordUtil.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- RecordUtil.java   23 Mar 2002 16:44:37 -0000      1.5
  +++ RecordUtil.java   23 Mar 2002 17:06:16 -0000      1.6
  @@ -162,7 +162,7 @@
   
       public static String getMask(int bit)
       {
  -     if (bit > 1) bit--;
  +     //if (bit > 1) bit--;
           int mask = (int)Math.pow(2, bit);
   
           return "0x" + Integer.toHexString(mask);
  
  
  


Reply via email to