1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Fix clippy::manual_assert.

This commit is contained in:
David Campbell 2024-09-19 16:31:27 -04:00
parent 98460132fd
commit 5d986bfb4c
No known key found for this signature in database
GPG key ID: C2E99A0CF863A603

View file

@ -67,9 +67,10 @@ pub fn help_about(input: TokenStream) -> TokenStream {
let input: Vec<TokenTree> = input.into_iter().collect();
let filename = get_argument(&input, 0, "filename");
let text: String = uuhelp_parser::parse_about(&read_help(&filename));
if text.is_empty() {
panic!("About text not found! Make sure the markdown format is correct");
}
assert!(
!text.is_empty(),
"About text not found! Make sure the markdown format is correct"
);
TokenTree::Literal(Literal::string(&text)).into()
}
@ -84,9 +85,10 @@ pub fn help_usage(input: TokenStream) -> TokenStream {
let input: Vec<TokenTree> = input.into_iter().collect();
let filename = get_argument(&input, 0, "filename");
let text: String = uuhelp_parser::parse_usage(&read_help(&filename));
if text.is_empty() {
panic!("Usage text not found! Make sure the markdown format is correct");
}
assert!(
!text.is_empty(),
"Usage text not found! Make sure the markdown format is correct"
);
TokenTree::Literal(Literal::string(&text)).into()
}