mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
tests ~ fix cargo clippy complaint (*allow* clippy::manual_strip; with FixME/ToDO)
- replace with the included/noted code when MSRV includes a stabilized `String::strip_prefix()`
This commit is contained in:
@@ -625,11 +625,20 @@ impl AtPath {
|
|||||||
// Source:
|
// Source:
|
||||||
// http://stackoverflow.com/questions/31439011/getfinalpathnamebyhandle-without-prepended
|
// http://stackoverflow.com/questions/31439011/getfinalpathnamebyhandle-without-prepended
|
||||||
let prefix = "\\\\?\\";
|
let prefix = "\\\\?\\";
|
||||||
|
// FixME: replace ...
|
||||||
|
#[allow(clippy::manual_strip)]
|
||||||
if s.starts_with(prefix) {
|
if s.starts_with(prefix) {
|
||||||
String::from(&s[prefix.len()..])
|
String::from(&s[prefix.len()..])
|
||||||
} else {
|
} else {
|
||||||
s
|
s
|
||||||
}
|
}
|
||||||
|
// ... with ...
|
||||||
|
// if let Some(stripped) = s.strip_prefix(prefix) {
|
||||||
|
// String::from(stripped)
|
||||||
|
// } else {
|
||||||
|
// s
|
||||||
|
// }
|
||||||
|
// ... when using MSRV with stabilized `strip_prefix()`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user