remove unused IsComment trait

This commit is contained in:
ConnorSkees 2020-04-20 14:57:22 -04:00
parent 46552b3a56
commit ca69695776

View File

@ -34,10 +34,6 @@ pub(crate) fn devour_whitespace<I: Iterator<Item = W>, W: IsWhitespace>(
found_whitespace
}
pub(crate) trait IsComment {
fn is_comment(&self) -> bool;
}
pub(crate) fn devour_whitespace_or_comment<I: Iterator<Item = Token>>(
toks: &mut PeekMoreIterator<I>,
) -> SassResult<bool> {