comparison Main/jungle-main/store/impl/logger/LoggingChildren.cs @ 28:9588ad364fdd

Last commit before change.
author Kazuma Takeda
date Wed, 18 Jan 2017 19:53:29 +0900
parents 1f99e150f336
children f2ea780b3e80
comparison
equal deleted inserted replaced
27:9ff715ff8e09 28:9588ad364fdd
31 return DefaultEither<Error,LoggingNode>.newB(newLoggingNode); 31 return DefaultEither<Error,LoggingNode>.newB(newLoggingNode);
32 } 32 }
33 33
34 public Either<Error,LoggingNode> addNewChildAt(int _pos) 34 public Either<Error,LoggingNode> addNewChildAt(int _pos)
35 { 35 {
36 Debug.Log ("in addNewChild");
37 NodeOperation addNewChildAt = new AppendChildAtOperation(_pos); 36 NodeOperation addNewChildAt = new AppendChildAtOperation(_pos);
38 return edit(addNewChildAt); 37 return edit(addNewChildAt);
39 } 38 }
40 39
41 public Either<Error,LoggingNode> deleteChildAt(int _pos) 40 public Either<Error,LoggingNode> deleteChildAt(int _pos)