2003-11-22 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/DatagramChannelImpl.java (getNativeFD): Use getPlainDatagramSocketImpl(). * gnu/java/nio/NIODatagramSocket.java (getPlainDatagramSocketImpl): Renamed from getImpl(). * gnu/java/nio/NIOSocket.java (getPlainSocketImpl): Renamed from getImpl(). (setChannel): Use getPlainSocketImpl(). * gnu/java/nio/SocketChannelImpl.java (SocketChannelImpl): Use getPlainSocketImpl(). (getPlainSocketImpl): Renamed from getImpl(). (getNativeFD): Use getPlainSocketImpl(). From-SVN: r73840
This commit is contained in:
committed by
Michael Koch
parent
249083758d
commit
d3f010ec28
@@ -81,7 +81,7 @@ public final class SocketChannelImpl extends SocketChannel
|
||||
throws IOException
|
||||
{
|
||||
super (provider);
|
||||
this.impl = socket.getImpl();
|
||||
this.impl = socket.getPlainSocketImpl();
|
||||
this.socket = socket;
|
||||
}
|
||||
|
||||
@@ -99,14 +99,14 @@ public final class SocketChannelImpl extends SocketChannel
|
||||
}
|
||||
}
|
||||
|
||||
PlainSocketImpl getImpl()
|
||||
PlainSocketImpl getPlainSocketImpl()
|
||||
{
|
||||
return impl;
|
||||
}
|
||||
|
||||
int getNativeFD()
|
||||
{
|
||||
return socket.getImpl().getNativeFD();
|
||||
return socket.getPlainSocketImpl().getNativeFD();
|
||||
}
|
||||
|
||||
protected void implCloseSelectableChannel () throws IOException
|
||||
|
||||
Reference in New Issue
Block a user