comparison src/main/java/christie/test/Remote/RemotePutTest.java @ 36:4479d37c8e53

change put syntax
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Wed, 28 Feb 2018 20:32:36 +0900
parents 7b405f622c5c
children
comparison
equal deleted inserted replaced
35:6660ebba441e 36:4479d37c8e53
16 @Override 16 @Override
17 protected void run(CodeGearManager cgm) { 17 protected void run(CodeGearManager cgm) {
18 if (count <= 10){ 18 if (count <= 10){
19 System.out.println(cgmID + " : " + count); 19 System.out.println(cgmID + " : " + count);
20 cgm.setup(new RemotePutTest()); 20 cgm.setup(new RemotePutTest());
21 getDGM("remote").put("count", count + 1); 21 put("remote", "count", count + 1);
22 } 22 }
23 } 23 }
24 24
25 } 25 }