2003-01-14 Michael Koch <konqueror@gmx.de>
* java/net/InetSocketAddress.java (serialVersionUID): New member variable. * java/net/NetPermission.java (NetPermission): Dont implement java.io.Serialization directly. * java/net/SocketAddress.java: (serialVersionUID): Documentation added. From-SVN: r61305
This commit is contained in:
parent
a7189b490f
commit
8cb5ee7192
4 changed files with 17 additions and 1 deletions
|
@ -47,6 +47,11 @@ package java.net;
|
|||
|
||||
public class InetSocketAddress extends SocketAddress
|
||||
{
|
||||
/**
|
||||
* Compatible with JDK 1.4+
|
||||
*/
|
||||
private static final long serialVersionUID = 5076001401234631237L;
|
||||
|
||||
String hostname;
|
||||
InetAddress addr;
|
||||
int port;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue