Commit 6ced3f39 by Michael Koch Committed by Michael Koch

2003-06-27 Michael Koch <konqueror@gmx.de>

	* java/net/Inet4Address.java
	(Inet4Address): Made package-private.
	* java/net/Inet6Address.java
	(Inet4Address): Made package-private.

From-SVN: r68575
parent 824d4a10
2003-06-27 Michael Koch <konqueror@gmx.de>
* java/net/Inet4Address.java
(Inet4Address): Made package-private.
* java/net/Inet6Address.java
(Inet4Address): Made package-private.
2003-06-27 Michael Koch <konqueror@gmx.de>
* java/io/RandomAccessFile.java
(readLine): Removed wrong @deprecated tag.
(getChannel): Made final.
......
......@@ -72,7 +72,7 @@ public final class Inet4Address extends InetAddress
* @param addr The IP address
* @param host The Hostname
*/
protected Inet4Address(byte[] addr, String host)
Inet4Address(byte[] addr, String host)
{
super (addr, host);
}
......
......@@ -66,7 +66,7 @@ public final class Inet6Address extends InetAddress
* @param addr The IP address
* @param host The hostname
*/
protected Inet6Address (byte[] addr, String host)
Inet6Address (byte[] addr, String host)
{
super (addr, host);
this.ipaddress = addr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment