return true;
}
@Override
public KernelNodeState merge() throws CommitFailedException {
MicroKernel kernel = store.getKernel();
CommitEditor editor = store.getEditor();
NodeState oldRoot = base;
NodeState toCommit = editor.editCommit(store, oldRoot, currentRoot);
setRoot(toCommit);
try {
String mergedRevision = kernel.merge(branchRevision, null);
branchRevision = null;
currentRoot = null;
committed = null;
KernelNodeState committed = new KernelNodeState(kernel, "/", mergedRevision);
return committed;