ok/jj
1
0
Fork 0
forked from mirrors/jj

templater: remove an unnecessary trait bound

This commit is contained in:
Martin von Zweigbergk 2021-03-29 15:56:01 -07:00
parent 72195f3261
commit 4c5dd740fd

View file

@ -127,7 +127,7 @@ pub trait TemplateProperty<C, O> {
fn extract(&self, context: &C) -> O;
}
pub struct ConstantTemplateProperty<O: Clone> {
pub struct ConstantTemplateProperty<O> {
pub output: O,
}