You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ea...@apache.org on 2008/11/12 21:30:59 UTC

svn commit: r713497 - /incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java

Author: eae
Date: Wed Nov 12 12:30:59 2008
New Revision: 713497

URL: http://svn.apache.org/viewvc?rev=713497&view=rev
Log:
UIMA-1207 Apply Bhavani's  uima-1207-1.patch

Modified:
    incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java

Modified: incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java?rev=713497&r1=713496&r2=713497&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java (original)
+++ incubator/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CASImpl.java Wed Nov 12 12:30:59 2008
@@ -1297,7 +1297,6 @@
         for (int i=0; i < byteheapsz; i++) {
     	  this.getByteHeap().addByte(dis.readByte());
         }
-        this.getByteHeap().heapPos += byteheapsz;
       }
       // word alignment
       int align = (4 - (byteheapsz % 4)) % 4;
@@ -1333,7 +1332,6 @@
             this.getShortHeap().addShort(dis.readShort());
           }
          }
-    	 this.getShortHeap().heapPos += shortheapsz;
       }
       // word alignment
       if (shortheapsz % 2 != 0) {
@@ -1369,7 +1367,6 @@
             this.getLongHeap().addLong(dis.readLong());
           }
         }
-    	this.getLongHeap().heapPos += longheapsz;
       }
       
       if (delta)  {