mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-02 16:23:56 +08:00
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:
parent
824d4a1036
commit
6ced3f39f6
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user