You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2004/12/04 04:02:46 UTC

cvs commit: ws-axis/java/src/org/apache/axis/utils ByteArray.java

dims        2004/12/03 19:02:46

  Modified:    java/src/org/apache/axis/utils ByteArray.java
  Log:
  Don't increment the count twice...found when testing with IKVM.NET
  
  Revision  Changes    Path
  1.5       +0 -1      ws-axis/java/src/org/apache/axis/utils/ByteArray.java
  
  Index: ByteArray.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/src/org/apache/axis/utils/ByteArray.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ByteArray.java	19 Jul 2004 16:54:58 -0000	1.4
  +++ ByteArray.java	4 Dec 2004 03:02:46 -0000	1.5
  @@ -147,7 +147,6 @@
        * @throws IOException
        */
       public void write(byte bytes[]) throws IOException {
  -        count += bytes.length;
           write(bytes, 0, bytes.length);
       }