diff options
Diffstat (limited to 'third_party/nix/src/libstore/remote-store.hh')
-rw-r--r-- | third_party/nix/src/libstore/remote-store.hh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/nix/src/libstore/remote-store.hh b/third_party/nix/src/libstore/remote-store.hh index 927d0833541f..a6829226ca87 100644 --- a/third_party/nix/src/libstore/remote-store.hh +++ b/third_party/nix/src/libstore/remote-store.hh @@ -136,18 +136,4 @@ class RemoteStore : public virtual Store { std::atomic_bool failed{false}; }; -class UDSRemoteStore : public LocalFSStore, public RemoteStore { - public: - UDSRemoteStore(const Params& params); - UDSRemoteStore(std::string path, const Params& params); - - std::string getUri() override; - - bool sameMachine() override { return true; } - - private: - ref<RemoteStore::Connection> openConnection() override; - std::optional<std::string> path; -}; - } // namespace nix |