diff options
author | Michael Koch <konqueror@gmx.de> | 2005-04-28 21:02:40 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2005-04-28 21:02:40 +0000 |
commit | e5d149869aa8ac4ae107421712685fe06bd0aac1 (patch) | |
tree | 99fb3af6da9332a9ad884d8b451396006c91970d | |
parent | f7f655c70668e1d6b8e7d438fb8c94d927bcd3ef (diff) | |
download | gcc-e5d149869aa8ac4ae107421712685fe06bd0aac1.zip gcc-e5d149869aa8ac4ae107421712685fe06bd0aac1.tar.gz gcc-e5d149869aa8ac4ae107421712685fe06bd0aac1.tar.bz2 |
2005-04-28 Michael Koch <konqueror@gmx.de>
* java/net/InetAddress.java
(aton): Fixed javadoc.
(lookup): Likewise.
From-SVN: r98941
-rw-r--r-- | libjava/ChangeLog | 6 | ||||
-rw-r--r-- | libjava/java/net/InetAddress.java | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index ff6451e..f9d07a6 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2005-04-28 Michael Koch <konqueror@gmx.de> + + * java/net/InetAddress.java + (aton): Fixed javadoc. + (lookup): Likewise. + 2005-04-28 Tom Tromey <tromey@redhat.com> * javax/swing/Timer.java diff --git a/libjava/java/net/InetAddress.java b/libjava/java/net/InetAddress.java index 0c17206..796a454 100644 --- a/libjava/java/net/InetAddress.java +++ b/libjava/java/net/InetAddress.java @@ -542,7 +542,7 @@ public class InetAddress implements Serializable } /** - * If hostname is a valid numeric IP address, return the numeric address. + * If hostname is a valid numeric IP address, return the numeric address. * Otherwise, return null. * * @param hostname the name of the host @@ -553,8 +553,8 @@ public class InetAddress implements Serializable * Looks up all addresses of a given host. * * @param hostname the host to lookup - * @param ipaddr FIXME - * @param all FIXME + * @param ipaddr the IP address to lookup + * @param all return all known addresses for one host * * @return an array with all found addresses */ |