diff src/main/java/jp/ac/u_ryukyu/ie/cr/tatsuki/jungle/store/index/PutAttributeIndex.java @ 105:78ef456c98a0

add Query Status but has error
author one
date Fri, 12 Sep 2014 19:47:25 +0900
parents bed3afd5c2e2
children 5b7e45464bb8
line wrap: on
line diff
--- a/src/main/java/jp/ac/u_ryukyu/ie/cr/tatsuki/jungle/store/index/PutAttributeIndex.java	Fri Sep 12 16:22:22 2014 +0900
+++ b/src/main/java/jp/ac/u_ryukyu/ie/cr/tatsuki/jungle/store/index/PutAttributeIndex.java	Fri Sep 12 19:47:25 2014 +0900
@@ -15,14 +15,11 @@
 
 public class PutAttributeIndex extends PutAttribute {
 
-	private final String key;
-	private final ByteBuffer value;
 	private TreeMap<String,List<TreeNode>> index; 
+	
 	public PutAttributeIndex(String _key,ByteBuffer _value, TreeMap<String,List<TreeNode>>index)
 	{
 		super(_key, _value);
-		key = _key;
-		value = _value;
 		this.index = index;
 	}