From 4fef54084f058c6f76596609f0dd31c14807c5b2 Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Mon, 19 Jun 2023 23:48:06 -0700 Subject: [PATCH] [zion] Remove legacy capability method. --- zion/object/process.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/zion/object/process.h b/zion/object/process.h index 05fc57a..2eac7e9 100644 --- a/zion/object/process.h +++ b/zion/object/process.h @@ -46,13 +46,6 @@ class Process : public KernelObject { } uint64_t AddExistingCapability(const RefPtr& cap); - // FIXME: Eliminate reliance on this. - template - void AddNewCapabilityWithId(uint64_t id, const RefPtr& obj, - uint64_t permissions) { - return caps_.AddNewCapabilityWithId(id, obj, permissions); - } - // Checks the state of all child threads and transitions to // finished if all have finished. void CheckState();