|
This will reproduce the issue:
public static void main(String[] args) throws Exception { TypedValue o = new TypedValue(null, null); ByteArrayOutputStream bos = new ByteArrayOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(bos); oos.writeObject(o); oos.flush(); oos.close(); }
|