clean up detect_cycles

This commit is contained in:
Mark Thom
2018-05-01 10:52:57 -06:00
parent 0458a70527
commit d51c950b77
2 changed files with 12 additions and 33 deletions

View File

@@ -1360,13 +1360,6 @@ impl Addr {
_ => true
}
}
pub fn is_empty_list(&self) -> bool {
match self {
&Addr::Con(Constant::EmptyList) => true,
_ => false
}
}
}
impl From<Ref> for Addr {