commits.put(id, StoredCommit.deserialize(id, new BinaryBinding(new ByteArrayInputStream(bytes))));
}
}
public ChildNodeEntriesMap readCNEMap(Id id) throws NotFoundException {
ChildNodeEntriesMap map = cneMaps.get(id);
if (map != null) {
return map;
} else {
throw new NotFoundException(id.toString());
}