guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/13: daemon: Remove unused function exportPaths.


From: guix-commits
Subject: 02/13: daemon: Remove unused function exportPaths.
Date: Sun, 11 Sep 2022 10:43:57 -0400 (EDT)

mothacehe pushed a commit to branch master
in repository guix.

commit 93032586df6b925e1ed9102dc3a77aa626aa60d3
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Sat Sep 10 19:20:39 2022 +0200

    daemon: Remove unused function exportPaths.
    
    * nix/libstore/store-api.cc (exportPaths): Remove it.
    * nix/libstore/store-api.hh (exportPaths): Likewise.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 nix/libstore/store-api.cc | 11 -----------
 nix/libstore/store-api.hh |  7 -------
 2 files changed, 18 deletions(-)

diff --git a/nix/libstore/store-api.cc b/nix/libstore/store-api.cc
index e3a8ac0995..781fb9e693 100644
--- a/nix/libstore/store-api.cc
+++ b/nix/libstore/store-api.cc
@@ -236,17 +236,6 @@ string showPaths(const PathSet & paths)
     return s;
 }
 
-
-void exportPaths(StoreAPI & store, const Paths & paths,
-    bool sign, Sink & sink)
-{
-    foreach (Paths::const_iterator, i, paths) {
-        writeInt(1, sink);
-        store.exportPath(*i, sign, sink);
-    }
-    writeInt(0, sink);
-}
-
 Path readStorePath(Source & from)
 {
     Path path = readString(from);
diff --git a/nix/libstore/store-api.hh b/nix/libstore/store-api.hh
index 0693085a25..82a79e50e2 100644
--- a/nix/libstore/store-api.hh
+++ b/nix/libstore/store-api.hh
@@ -369,13 +369,6 @@ extern std::shared_ptr<StoreAPI> store;
    and separated by commas). */
 string showPaths(const PathSet & paths);
 
-
-/* Export multiple paths in the format expected by ‘nix-store
-   --import’. */
-void exportPaths(StoreAPI & store, const Paths & paths,
-    bool sign, Sink & sink);
-
-
 MakeError(SubstError, Error)
 MakeError(BuildError, Error) /* denotes a permanent build failure */
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]