1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-20 01:09:37 +01:00

Remove WorkerProto::Op::ImportPaths

This was obsoleted in May 2016 (538a64e8c3).
This commit is contained in:
Eelco Dolstra 2025-09-09 13:44:07 +02:00
parent 4fb61bc5af
commit 86d19956f2
4 changed files with 0 additions and 23 deletions

View file

@ -313,12 +313,4 @@ void WorkerProto::BasicClientConnection::narFromPath(
fun(from);
}
void WorkerProto::BasicClientConnection::importPaths(
const StoreDirConfig & store, bool * daemonException, Source & source)
{
to << WorkerProto::Op::ImportPaths;
processStderr(daemonException, 0, &source);
auto importedPaths = WorkerProto::Serialise<StorePathSet>::read(store, *this);
assert(importedPaths.size() <= importedPaths.size());
}
} // namespace nix