diff options
author | Michael Koch <konqueror@gmx.de> | 2004-10-18 12:36:27 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-10-18 12:36:27 +0000 |
commit | df397ce2bdc44b6a8cd3e100317c5390994bdde2 (patch) | |
tree | 89879f9793d01be864028c7a7a96bf5a6aedcd8c /libjava/java/net/Inet6Address.java | |
parent | 2c661756f45c5fb1fa6e886b55ef43e2fefce5aa (diff) | |
download | gcc-df397ce2bdc44b6a8cd3e100317c5390994bdde2.zip gcc-df397ce2bdc44b6a8cd3e100317c5390994bdde2.tar.gz gcc-df397ce2bdc44b6a8cd3e100317c5390994bdde2.tar.bz2 |
Inet4Address.java: Merged file header and javadocs.
2004-10-18 Michael Koch <konqueror@gmx.de>
* java/net/Inet4Address.java: Merged file header and javadocs.
* java/net/Inet6Address.java: Likewise.
* java/net/InetAddress.java
(getCanonicalHostName): Create Inet4Address object instead of
InetAddress and add comment regarding IPv6.
(toString): Simplified.
From-SVN: r89211
Diffstat (limited to 'libjava/java/net/Inet6Address.java')
-rw-r--r-- | libjava/java/net/Inet6Address.java | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/libjava/java/net/Inet6Address.java b/libjava/java/net/Inet6Address.java index 5d52735..e0329d5 100644 --- a/libjava/java/net/Inet6Address.java +++ b/libjava/java/net/Inet6Address.java @@ -1,5 +1,5 @@ -/* Inet6Address.java - Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Inet6Address.java -- + Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -35,20 +35,17 @@ this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ + package java.net; import java.util.Arrays; - -/** - * @author Michael Koch - * @date August 3, 2002. - */ - /* * Written using on-line Java Platform 1.4 API Specification and * RFC 1884 (http://www.ietf.org/rfc/rfc1884.txt) - * Status: Believed complete and correct. + * + * @author Michael Koch + * @status Believed complete and correct. */ public final class Inet6Address extends InetAddress { |