diff src/main/java/alice/daemon/CommandMessage.java @ 419:aefbe41fcf12 dispose

change tab to space
author sugi
date Tue, 15 Jul 2014 16:00:22 +0900
parents 8f71c3e6f11d
children 2f2623484b77
line wrap: on
line diff
--- a/src/main/java/alice/daemon/CommandMessage.java	Tue Jul 15 06:15:53 2014 +0900
+++ b/src/main/java/alice/daemon/CommandMessage.java	Tue Jul 15 16:00:22 2014 +0900
@@ -5,21 +5,21 @@
 
 @Message
 public class CommandMessage {
-	public int type;
-	public int index;
-	public int seq;
-	public String key;
-	public Value val;
-	public boolean flag;
-	
-	public CommandMessage() {}
-	
-	public CommandMessage(int type, int index, int seq, String key, Value val, boolean flag) {
-		this.type = type;
-		this.index = index;
-		this.seq = seq;
-		this.key = key;
-		this.val = val;
-		this.flag = flag;
-	}
+    public int type;
+    public int index;
+    public int seq;
+    public String key;
+    public Value val;
+    public boolean flag;
+
+    public CommandMessage() {}
+
+    public CommandMessage(int type, int index, int seq, String key, Value val, boolean flag) {
+        this.type = type;
+        this.index = index;
+        this.seq = seq;
+        this.key = key;
+        this.val = val;
+        this.flag = flag;
+    }
 }