summaryrefslogtreecommitdiff
path: root/java/net/Inet4Address.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-06-26 19:52:42 +0000
committerMichael Koch <konqueror@gmx.de>2003-06-26 19:52:42 +0000
commitfc6ae2a19f6610b975171586aa73dcdaaa9a4645 (patch)
tree5909f171b1ff44d95fbdea37f3d36a731ce694da /java/net/Inet4Address.java
parentd47deba0110ba32b2800f9b4f05628333b0f570f (diff)
downloadclasspath-fc6ae2a19f6610b975171586aa73dcdaaa9a4645.tar.gz
2003-06-26 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/FileChannelImpl.java (write): Removed. * java/awt/font/GraphicAttribute.java (getAlignment): Made final. * java/awt/font/ImageGraphicAttribute.java (ImageGraphicAttribute): Made final. * java/awt/image/DataBufferByte.java (DataBufferByte): Made final. * java/awt/image/DataBufferInt.java (DataBufferInt): Made final. * java/awt/image/DataBufferUShort.java (DataBufferUShort): Made final. * java/awt/image/DirectColorModel.java (coerceData): Made final. * java/awt/image/PixelGrabber.java (status): Removed @deprecated tag. * java/beans/beancontext/BeanContextSupport.java (BCSIterator): Made final. * java/io/RandomAccessFile.java (readLine): Removed @deprecated tag. * java/net/Inet4Address.java (Inet4Address): Made package-private. * java/net/Inet6Address.java (Inet6Address): Made package-private. * java/nio/channels/FileChannel.java (write): Made final. * java/nio/channels/ServerSocketChannel.java (ServerSocketChannel): Made protected.
Diffstat (limited to 'java/net/Inet4Address.java')
-rw-r--r--java/net/Inet4Address.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/net/Inet4Address.java b/java/net/Inet4Address.java
index bcfc46ed8..25d296f99 100644
--- a/java/net/Inet4Address.java
+++ b/java/net/Inet4Address.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);
}