diff rep/handler/PacketSet.java @ 155:bbd2801d8ce0

*** empty log message ***
author pin
date Thu, 28 Aug 2008 15:39:20 +0900
parents 0bf7f8d0f5f7
children a097b1d619a1
line wrap: on
line diff
--- a/rep/handler/PacketSet.java	Thu Aug 28 15:33:02 2008 +0900
+++ b/rep/handler/PacketSet.java	Thu Aug 28 15:39:20 2008 +0900
@@ -2,13 +2,14 @@
 
 import rep.REPCommand;
 import rep.channel.ChannelSimulator;
+import rep.channel.REPSocketChannel;
 
 public class PacketSet {
 
-	private ChannelSimulator<REPCommand> channel;
+	private REPSocketChannel<REPCommand> channel;
 	private REPCommand packet;
 
-	public PacketSet(ChannelSimulator<REPCommand> channel, REPCommand packet) {
+	public PacketSet(REPSocketChannel<REPCommand> channel, REPCommand packet) {
 		this.channel = channel;
 		this.packet = packet;
 	}