From fdbbcc44924cb4d9028fa68b2f7d423fb5d8670f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 21 Oct 2016 18:09:30 +0200 Subject: Remove addPathToAccessor --- src/libstore/store-api.hh | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'src/libstore/store-api.hh') diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index d6e181196349..94dc8ab1ac7e 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -366,7 +366,8 @@ public: /* Import a path into the store. */ virtual void addToStore(const ValidPathInfo & info, const ref & nar, - bool repair = false, bool dontCheckSigs = false) = 0; + bool repair = false, bool dontCheckSigs = false, + std::shared_ptr accessor = 0) = 0; /* Copy the contents of a path to the store and register the validity the resulting path. The resulting path is returned. @@ -461,17 +462,6 @@ public: /* Return an object to access files in the Nix store. */ virtual ref getFSAccessor() = 0; -private: - - /* Inform an accessor about the NAR contents of a store path. Used - by importPaths() to speed up subsequent access to the imported - paths when used with binary cache stores. */ - virtual void addPathToAccessor(ref, const Path & storePath, const ref & data) - { - } - -public: - /* Add signatures to the specified store path. The signatures are not verified. */ virtual void addSignatures(const Path & storePath, const StringSet & sigs) = 0; -- cgit 1.4.1