comparison rep/channel/REPServerSocketChannel.java @ 168:4ed6393ec68e

*** empty log message ***
author kono
date Thu, 28 Aug 2008 18:54:01 +0900
parents 9bb6bbb08ad7
children eb89a73976fa
comparison
equal deleted inserted replaced
167:3dc194f5e28f 168:4ed6393ec68e
65 return null; 65 return null;
66 } 66 }
67 67
68 68
69 public SelectionKey register(REPSelector sel, int ops, Object att) throws ClosedChannelException { 69 public SelectionKey register(REPSelector sel, int ops, Object att) throws ClosedChannelException {
70 assert(!isSimulation);
70 REPSelector selector = sel; 71 REPSelector selector = sel;
71 return selector.register(this, ops, att); 72 return selector.register(ss, ops, att);
72 } 73 }
73 74
74 } 75 }