From 20997f6f72a62f74e6493292d111bd1ba48beb92 Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Fri, 9 Oct 2020 14:16:00 -0700 Subject: Minor whitespace/comment cleanup --- src/lib.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f3b895a..6cbc682 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -784,12 +784,9 @@ impl Uri { pub fn parse(uri_string: &str) -> Result { let (scheme, rest) = Self::parse_scheme(uri_string)?; - - let path_end = rest.find(&['?', '#'][..]) + let path_end = rest + .find(&['?', '#'][..]) .unwrap_or_else(|| rest.len()); -// let path_end = rest.find(|c| "?#".find(c).is_some()) -// .unwrap_or(rest.len()); - let authority_and_path_string = &rest[0..path_end]; let query_and_or_fragment = &rest[path_end..]; let (authority, path) = Self::split_authority_from_path_and_parse_them(authority_and_path_string)?; -- cgit v1.2.3