summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map.rs2
-rw-r--r--src/step.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/map.rs b/src/map.rs
index ab27164..0184fc1 100644
--- a/src/map.rs
+++ b/src/map.rs
@@ -118,7 +118,7 @@ impl Roadmap {
/// Should status be goal? In other words, does any other step
/// depend on this one?
pub fn is_goal(&self, step: &Step) -> bool {
- self.steps.iter().all(|other| !other.depends_on(step.name()))
+ self.steps.iter().all(|other| !other.depends_on(&step))
}
diff --git a/src/step.rs b/src/step.rs
index 4012da7..221b2bd 100644
--- a/src/step.rs
+++ b/src/step.rs
@@ -57,8 +57,8 @@ impl Step {
}
/// Does this step depend on given other step?
- pub fn depends_on(&self, other_name: &str) -> bool {
- self.depends.iter().any(|depname| depname == other_name)
+ pub fn depends_on(&self, other: &Step) -> bool {
+ self.depends.iter().any(|depname| depname == other.name())
}
}