331332333334335336337
return new AddNode(parentPath, name); } private Operation createRemoveNode() { String path = chooseNodePath(); return "/root".equals(path) ? null : new RemoveNode(path); }
322323324325326327328
327328329330331332333
329330331332333334335