Merge pull request #3124 from jfinkels/head-enum-self

head: use Self instead of enum name Mode in method
This commit is contained in:
Sylvestre Ledru 2022-02-12 22:24:44 +01:00 committed by GitHub
commit 4009bf9a89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,17 +124,17 @@ impl Mode {
let (n, all_but_last) =
parse::parse_num(v).map_err(|err| format!("invalid number of bytes: {}", err))?;
if all_but_last {
Ok(Mode::AllButLastBytes(n))
Ok(Self::AllButLastBytes(n))
} else {
Ok(Mode::FirstBytes(n))
Ok(Self::FirstBytes(n))
}
} else if let Some(v) = matches.value_of(options::LINES_NAME) {
let (n, all_but_last) =
parse::parse_num(v).map_err(|err| format!("invalid number of lines: {}", err))?;
if all_but_last {
Ok(Mode::AllButLastLines(n))
Ok(Self::AllButLastLines(n))
} else {
Ok(Mode::FirstLines(n))
Ok(Self::FirstLines(n))
}
} else {
Ok(Default::default())