Remove old code comments

This commit is contained in:
Tobie Morgan Hitchcock 2022-02-22 19:08:40 +00:00
parent 7d5dc66555
commit 19909885e9

View file

@ -464,7 +464,7 @@ impl Value {
pub fn is_true(&self) -> bool {
match self {
Value::True => true,
Value::Strand(v) => v.value.to_ascii_lowercase() == "true", // TODO: remove this?
Value::Strand(v) => v.value.to_ascii_lowercase() == "true",
_ => false,
}
}
@ -472,7 +472,7 @@ impl Value {
pub fn is_false(&self) -> bool {
match self {
Value::False => true,
Value::Strand(v) => v.value.to_ascii_lowercase() == "false", // TODO: remove this?
Value::Strand(v) => v.value.to_ascii_lowercase() == "false",
_ => false,
}
}