/[classpath]/classpath/gnu/java/nio/SelectorImpl.java
ViewVC logotype

Diff of /classpath/gnu/java/nio/SelectorImpl.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by mkoch, Fri Sep 26 21:37:54 2003 UTC revision 1.11 by mkoch, Wed Oct 15 12:51:31 2003 UTC
# Line 253  public class SelectorImpl extends Abstra Line 253  public class SelectorImpl extends Abstra
253      if (ch instanceof SocketChannelImpl)      if (ch instanceof SocketChannelImpl)
254        {        {
255          SocketChannelImpl sc = (SocketChannelImpl) ch;          SocketChannelImpl sc = (SocketChannelImpl) ch;
256          result = new SocketChannelSelectionKey (ch, this); // FIXME: last argument          result = new SocketChannelSelectionKey (ch, this);
257        }        }
258      else if (ch instanceof DatagramChannelImpl)      else if (ch instanceof DatagramChannelImpl)
259        {        {
260          DatagramChannelImpl dc = (DatagramChannelImpl) ch;          DatagramChannelImpl dc = (DatagramChannelImpl) ch;
261          result = new DatagramChannelSelectionKey (ch, this); // FIXME: last argument          result = new DatagramChannelSelectionKey (ch, this);
262        }        }
263      else if (ch instanceof ServerSocketChannelImpl)      else if (ch instanceof ServerSocketChannelImpl)
264        {        {
265          ServerSocketChannelImpl ssc = (ServerSocketChannelImpl) ch;          ServerSocketChannelImpl ssc = (ServerSocketChannelImpl) ch;
266          result = new SocketChannelSelectionKey (ch, this); // FIXME: last argument          result = new ServerSocketChannelSelectionKey (ch, this);
267        }        }
268      else      else
269        {        {

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26