Remove has_prefix_space

This commit is contained in:
Seiichi Uchida 2018-03-18 12:33:30 +09:00 committed by topecongiro
parent ec71459c44
commit 95507e3a43

View File

@ -519,15 +519,6 @@ impl MacroArgKind {
}
}
fn has_prefix_space(&self) -> bool {
match *self {
MacroArgKind::Separator(_, ref prefix) | MacroArgKind::Other(_, ref prefix) => {
prefix.starts_with(" ")
}
_ => false,
}
}
fn rewrite(
&self,
context: &RewriteContext,