Remove unused AddContainedObjectIDs (#7323)

This commit is contained in:
Edward Oakes
2020-02-25 16:42:20 -08:00
committed by GitHub
parent 226fcd5aff
commit 44b4394afa
4 changed files with 0 additions and 25 deletions
-5
View File
@@ -378,11 +378,6 @@ void CoreWorker::RegisterOwnershipInfoAndResolveFuture(
future_resolver_->ResolveFutureAsync(object_id, owner_id, owner_address);
}
void CoreWorker::AddContainedObjectIDs(
const ObjectID &object_id, const std::vector<ObjectID> &contained_object_ids) {
// TODO(edoakes,swang): integrate with the reference counting logic.
}
Status CoreWorker::SetClientOptions(std::string name, int64_t limit_bytes) {
// Currently only the Plasma store supports client options.
return plasma_store_provider_->SetClientOptions(name, limit_bytes);
-8
View File
@@ -169,14 +169,6 @@ class CoreWorker : public rpc::CoreWorkerServiceHandler {
const TaskID &owner_id,
const rpc::Address &owner_address);
/// Add metadata about the object IDs contained within another object ID.
/// This should be called during deserialization of the outer object ID.
///
/// \param[in] object_id The object containing IDs.
/// \param[in] contained_object_ids The IDs contained in the object.
void AddContainedObjectIDs(const ObjectID &object_id,
const std::vector<ObjectID> &contained_object_ids);
///
/// Public methods related to storing and retrieving objects.
///