diff src/alice/test/topology/fish/SendWidth.java @ 217:b5c642ba998e working

change as** method and remove "local" key in TEST
author sugi
date Wed, 27 Mar 2013 20:02:38 +0900
parents fec0726bb126
children
line wrap: on
line diff
--- a/src/alice/test/topology/fish/SendWidth.java	Wed Mar 27 19:38:33 2013 +0900
+++ b/src/alice/test/topology/fish/SendWidth.java	Wed Mar 27 20:02:38 2013 +0900
@@ -10,13 +10,13 @@
 
 	@Override
 	public void run() {
-		int width = this.width.data.asInteger(this.width);
+		int width = this.width.asInteger();
 		ods.put("parent", "widths", width);
 		
 		System.out.println("send widths: " + width);
 		
 		SendWidth cs = new SendWidth();
-		cs.width.setKey("local", "width", this.width.index);
+		cs.width.setKey("width", this.width.index);
 	}
 
 }