fix regression in SocketSelector when selecting ServerSocketChannels

This commit is contained in:
Joel Dice
2009-09-28 16:54:49 -06:00
parent 6fa25f992c
commit fb40b046fd
3 changed files with 8 additions and 2 deletions

View File

@ -23,6 +23,10 @@ public class ServerSocketChannel extends SelectableChannel {
return new ServerSocketChannel();
}
public int socketFD() {
return channel.socketFD();
}
public SelectableChannel configureBlocking(boolean v) throws IOException {
return channel.configureBlocking(v);
}