remove unused Content::new method

This commit is contained in:
Connor Skees 2020-07-08 19:34:39 -04:00
parent 980b2d9076
commit 11170ac5b3

View File

@ -29,12 +29,3 @@ pub(crate) struct Content {
pub content: Option<Vec<Token>>,
pub content_args: Option<FuncArgs>,
}
impl Content {
pub const fn new() -> Self {
Self {
content: None,
content_args: None,
}
}
}