From dfe61d01165823d0f2038de30ba8c6fa2b6bd8c7 Mon Sep 17 00:00:00 2001 From: Alexandr Burdiyan Date: Tue, 21 May 2024 17:02:12 +0200 Subject: [PATCH] Remove unused WithDeps() --- backend/hyper/entity.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/backend/hyper/entity.go b/backend/hyper/entity.go index 9bd9a3204..c5263bcc5 100644 --- a/backend/hyper/entity.go +++ b/backend/hyper/entity.go @@ -392,13 +392,6 @@ func WithAction(action string) ChangeOption { } } -// WithDeps sets the depts field of the change. -func WithDeps(deps []cid.Cid) ChangeOption { - return func(c *Change) { - c.Deps = deps - } -} - // WithMessage sets the message field of the change. func WithMessage(msg string) ChangeOption { return func(c *Change) {