Changeset 29638
- Timestamp:
- 01/25/08 18:01:10 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
org.nuxeo.ecm.core/branches/1.4/nuxeo-core-api/src/main/java/org/nuxeo/ecm/core/api/model/impl/DocumentPartImpl.java
r28980 r29638 183 183 out.writeInt(size); 184 184 if (size > 0) { 185 for (Property child : getNonPhantomChildren()) {185 for (Property child : props) { 186 186 serializeProperty(child, out); 187 187 } … … 261 261 throws ClassNotFoundException, IOException, PropertyException { 262 262 // children are transient so we need to create them explicitely 263 children = new Hashtable<String, Property>();263 parent.children = new Hashtable<String, Property>(); 264 264 // read serialized children 265 265 int size = in.readInt();
