Silence clippy warning.
This commit is contained in:
parent
e686c3e462
commit
3d3149e0d5
1 changed files with 4 additions and 0 deletions
|
@ -56,6 +56,10 @@ impl LineEnding {
|
|||
}
|
||||
}
|
||||
|
||||
// Normally we'd want to implement the FromStr trait, but in this case
|
||||
// that would force us into a different return type than from_char or
|
||||
// or from_rope_slice, which would be weird.
|
||||
#[allow(clippy::should_implement_trait)]
|
||||
#[inline]
|
||||
pub fn from_str(g: &str) -> Option<LineEnding> {
|
||||
match g {
|
||||
|
|
Loading…
Reference in a new issue