Commit in lcsim/src/org/lcsim/util/lcio on MAIN
SIOGenericObject.java+4-41.2 -> 1.3
JM: Fix minor discrepancies between standalone LCIO and lcsim SIOGenericObject.  NOT a fix for LCSIM-203.

lcsim/src/org/lcsim/util/lcio
SIOGenericObject.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- SIOGenericObject.java	9 Aug 2005 01:34:01 -0000	1.2
+++ SIOGenericObject.java	14 Sep 2007 02:43:41 -0000	1.3
@@ -9,7 +9,7 @@
 /**
  *
  * @author gaede
- * @version $Id: SIOGenericObject.java,v 1.2 2005/08/09 01:34:01 tonyj Exp $
+ * @version $Id: SIOGenericObject.java,v 1.3 2007/09/14 02:43:41 jeremy Exp $
  */
 class SIOGenericObject implements GenericObject
 {
@@ -26,7 +26,7 @@
    
    SIOGenericObject(SIOInputStream in, int flag, int version) throws IOException
    {
-      int nInt = nInt = in.readInt();
+      int nInt = in.readInt();
       int nFloat = in.readInt();
       int nDouble = in.readInt();
       read(in,flag,version,nInt,nFloat,nDouble);
@@ -34,7 +34,7 @@
    }
    
    SIOGenericObject(SIOInputStream in, int flag, int version, int nInt, int nFloat, int nDouble) throws IOException
-   {
+   {	
       read(in,flag,version,nInt,nFloat,nDouble);
       _isFixedSize = true;
    }   
@@ -58,7 +58,7 @@
       {
          _doubleVec[i] = in.readDouble();
       }
-      
+      in.readPTag(this); // JM      
    }
    
    static void write(GenericObject object, SIOOutputStream out, int flag) throws IOException
CVSspam 0.2.8