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
This commit is contained in:
Michael Koch 2003-06-27 15:48:15 +00:00 committed by Michael Koch
parent 824d4a1036
commit 6ced3f39f6
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
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

View File

@ -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);
}

View File

@ -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;