summaryrefslogtreecommitdiff
path: root/src/buildtool/execution_engine/dag/dag.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildtool/execution_engine/dag/dag.cpp')
-rw-r--r--src/buildtool/execution_engine/dag/dag.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/buildtool/execution_engine/dag/dag.cpp b/src/buildtool/execution_engine/dag/dag.cpp
index 03dc932f..b1f4dbcd 100644
--- a/src/buildtool/execution_engine/dag/dag.cpp
+++ b/src/buildtool/execution_engine/dag/dag.cpp
@@ -249,32 +249,3 @@ auto DependencyGraph::ArtifactWithId(
}
return std::nullopt;
}
-
-[[nodiscard]] auto DependencyGraph::ActionWithId(
- ActionIdentifier const& id) const noexcept -> std::optional<Action> {
- auto const* node = ActionNodeWithId(id);
- if (node != nullptr) {
- return node->Content();
- }
- return std::nullopt;
-}
-
-auto DependencyGraph::ActionOfArtifactWithId(
- ArtifactIdentifier const& artifact_id) const noexcept
- -> std::optional<Action> {
- auto const* node = ActionNodeOfArtifactWithId(artifact_id);
- if (node != nullptr) {
- return node->Content();
- }
- return std::nullopt;
-}
-
-auto DependencyGraph::ActionIdOfArtifactWithId(
- ArtifactIdentifier const& artifact_id) const noexcept
- -> std::optional<ActionIdentifier> {
- auto const& action = ActionOfArtifactWithId(artifact_id);
- if (action) {
- return action->Id();
- }
- return std::nullopt;
-}