1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 13:31:48 +02:00

Remove Input::computeStorePath()

This commit is contained in:
Eelco Dolstra 2022-07-25 15:35:53 +02:00
parent 4f8f52ae58
commit c0555c8e1f
4 changed files with 0 additions and 35 deletions

View file

@ -41,11 +41,6 @@ LockedNode::LockedNode(const nlohmann::json & json)
fetchers::attrsToJSON(lockedRef.input.toAttrs()));
}
StorePath LockedNode::computeStorePath(Store & store) const
{
return lockedRef.input.computeStorePath(store);
}
std::shared_ptr<Node> LockFile::findInput(const InputPath & path)
{
auto pos = root;

View file

@ -46,8 +46,6 @@ struct LockedNode : Node
{ }
LockedNode(const nlohmann::json & json);
StorePath computeStorePath(Store & store) const;
};
struct LockFile