Skip to content

Commit

Permalink
remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Jul 28, 2024
1 parent b1e8429 commit 54bdcff
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,6 @@ impl<R: RegExp> UrlPattern<R> {
let hostname_exec_result = self.hostname.matcher.matches(&input.hostname);
let port_exec_result = self.port.matcher.matches(&input.port);
let pathname_exec_result = self.pathname.matcher.matches(&input.pathname);
dbg!(&pathname_exec_result, &input.pathname);
let search_exec_result = self.search.matcher.matches(&input.search);
let hash_exec_result = self.hash.matcher.matches(&input.hash);

Expand Down

0 comments on commit 54bdcff

Please sign in to comment.