comparison src/main/java/christie/test/Remote/RemotePutTest.java @ 34:7b405f622c5c

refactor code
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Sat, 17 Feb 2018 13:14:22 +0900
parents e7bf1506810c
children 4479d37c8e53
comparison
equal deleted inserted replaced
33:e7bf1506810c 34:7b405f622c5c
13 @Peek 13 @Peek
14 public int cgmID; 14 public int cgmID;
15 15
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 getDGM("remote").put("count", count + 1);
22 //getDGM("remote").put("cgmID", cgm.cgmID);
23 } 22 }
24 } 23 }
25 24
26 } 25 }