changeset 52:0f773308a863

change CommandMessage Constructor
author kazz <kazz@cr.ie.u-ryukyu.ac.jp>
date Sun, 05 Feb 2012 06:42:23 +0900
parents 919389066887
children f9c82d9a4936
files src/alice/daemon/CommandMessage.java
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/alice/daemon/CommandMessage.java	Sun Feb 05 06:26:26 2012 +0900
+++ b/src/alice/daemon/CommandMessage.java	Sun Feb 05 06:42:23 2012 +0900
@@ -5,11 +5,11 @@
 
 @Message
 public class CommandMessage {
-	public int type = 0;
-	public int index = 0;
-	public int seq = 0;
-	public String key = null;
-	public Value val = null;
+	public int type;
+	public int index;
+	public int seq;
+	public String key;
+	public Value val;
 	
 	public CommandMessage() {}