summaryrefslogtreecommitdiffstats
path: root/src/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/node.rs')
-rw-r--r--src/node.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node.rs b/src/node.rs
index da57fb8..794c4af 100644
--- a/src/node.rs
+++ b/src/node.rs
@@ -9,8 +9,6 @@ use crate::NodeId;
/// A Node in the DAG, holding the data.
pub trait Node {
type Id: NodeId;
-
- fn id(&self) -> &Self::Id;
fn parent_ids(&self) -> Vec<Self::Id>;
}