changeset 221:6cd4aab9fea3

*** empty log message ***
author kono
date Sun, 31 Aug 2008 12:06:07 +0900
parents 216d64cd5f3a
children 18d6a7140fa3
files rep/channel/REPSelectionKey.java rep/channel/SelectionKeySimulator.java
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/rep/channel/REPSelectionKey.java	Sun Aug 31 11:19:59 2008 +0900
+++ b/rep/channel/REPSelectionKey.java	Sun Aug 31 12:06:07 2008 +0900
@@ -12,6 +12,10 @@
 	SelectionKey key;
 	private REPSelector<P> selector;
 	
+	public REPSelectionKey() {
+		
+	}
+	
 	public REPSelectionKey(SelectionKey key,REPSelector<P>s) {
 		this.key = key;
 		this.selector = s;
--- a/rep/channel/SelectionKeySimulator.java	Sun Aug 31 11:19:59 2008 +0900
+++ b/rep/channel/SelectionKeySimulator.java	Sun Aug 31 12:06:07 2008 +0900
@@ -13,13 +13,11 @@
 	public Selector selector;
 
 	public SelectionKeySimulator(SelectableChannel cs, int opt, Selector _selector) {
-		super(null);
 		channel = cs;
 		interestOpt = opt;
 		selector = _selector;
 	}
 	public SelectionKeySimulator(SelectionKey k) {
-		super(null);
 		channel = k.channel();
 		interestOpt = k.interestOps();
 		selector = k.selector();