| 
 Relates :   
 | 
|
| 
 Relates :   
 | 
|
| 
 Relates :   
 | 
Deserialization of any container throws NPE due to a missed initilization inside readObject() method.
 private void readObject(ObjectInputStream s)throws ClassNotFoundException, IOException{
        ObjectInputStream.GetField f = s.readFields();
        Component [] tmpComponent = (Component[])f.get("component", EMPTY_ARRAY);
>>        component.addAll(Arrays.asList(tmpComponent));
This is a regression of CR 6616323.
  |