|
Relates :
|
|
|
Relates :
|
|
|
Relates :
|
The java.net.InetAddress class has the declaration
private void readObjectNoData (ObjectInputStream s) throws
IOException, ClassNotFoundException { ...
This is incorrect; it should not have an ObjectInputStream parameter. The recommended declaration from the java.io.Serializable doc is as follows:
private void readObjectNoData() throws ObjectStreamException