src/java.sql.rowset/share/classes/javax/sql/rowset/serial/SerialArray.java
changeset 51181 01b8120f867a
parent 47216 71c04702a3d5
child 54106 9a90236ab64c
equal deleted inserted replaced
51180:b7eb9cc56277 51181:01b8120f867a
   627     /**
   627     /**
   628      * writeObject is called to save the state of the {@code SerialArray}
   628      * writeObject is called to save the state of the {@code SerialArray}
   629      * to a stream.
   629      * to a stream.
   630      */
   630      */
   631     private void writeObject(ObjectOutputStream s)
   631     private void writeObject(ObjectOutputStream s)
   632             throws IOException, ClassNotFoundException {
   632             throws IOException {
   633 
   633 
   634         ObjectOutputStream.PutField fields = s.putFields();
   634         ObjectOutputStream.PutField fields = s.putFields();
   635         fields.put("elements", elements);
   635         fields.put("elements", elements);
   636         fields.put("len", len);
   636         fields.put("len", len);
   637         fields.put("baseType", baseType);
   637         fields.put("baseType", baseType);